gsl: update to version 1.16

This commit is contained in:
Peter Simons 2014-06-21 14:03:09 +02:00
parent 3484106642
commit d95004cabf

View File

@ -1,11 +1,11 @@
{ fetchurl, stdenv }: { fetchurl, stdenv }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gsl-1.15"; name = "gsl-1.16";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/gsl/${name}.tar.gz"; url = "mirror://gnu/gsl/${name}.tar.gz";
sha256 = "18qf6jzz1r3mzb5qynywv4xx3z9g61hgkbpkdrhbgqh2g7jhgfc5"; sha256 = "0lrgipi0z6559jqh82yx8n4xgnxkhzj46v96dl77hahdp58jzg3k";
}; };
# ToDo: there might be more impurities than FMA support check # ToDo: there might be more impurities than FMA support check
@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "The GNU Scientific Library, a large numerical library"; description = "The GNU Scientific Library, a large numerical library";
homepage = http://www.gnu.org/software/gsl/;
license = "GPLv3+";
longDescription = '' longDescription = ''
The GNU Scientific Library (GSL) is a numerical library for C The GNU Scientific Library (GSL) is a numerical library for C
@ -27,10 +29,5 @@ stdenv.mkDerivation rec {
fitting. There are over 1000 functions in total with an fitting. There are over 1000 functions in total with an
extensive test suite. extensive test suite.
''; '';
homepage = http://www.gnu.org/software/gsl/;
license = "GPLv3+";
maintainers = [ ];
}; };
} }