summary refs log tree commit diff
path: root/pkgs/development/libraries/gsl
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-06-21 14:03:09 +0200
committerPeter Simons <simons@cryp.to>2014-06-21 14:03:09 +0200
commitd95004cabff908785bfbe9760bc1050fd537b1b8 (patch)
tree8d2abf4b7f43fe093b049f06aa46caba4d7a507f /pkgs/development/libraries/gsl
parent34841066422b379ec755e591bce5416e0e172c20 (diff)
downloadnixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar.gz
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar.bz2
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar.lz
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar.xz
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.tar.zst
nixpkgs-d95004cabff908785bfbe9760bc1050fd537b1b8.zip
gsl: update to version 1.16
Diffstat (limited to 'pkgs/development/libraries/gsl')
-rw-r--r--pkgs/development/libraries/gsl/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix
index eee977e9703..9631746691f 100644
--- a/pkgs/development/libraries/gsl/default.nix
+++ b/pkgs/development/libraries/gsl/default.nix
@@ -1,11 +1,11 @@
 { fetchurl, stdenv }:
 
 stdenv.mkDerivation rec {
-  name = "gsl-1.15";
+  name = "gsl-1.16";
 
   src = fetchurl {
     url = "mirror://gnu/gsl/${name}.tar.gz";
-    sha256 = "18qf6jzz1r3mzb5qynywv4xx3z9g61hgkbpkdrhbgqh2g7jhgfc5";
+    sha256 = "0lrgipi0z6559jqh82yx8n4xgnxkhzj46v96dl77hahdp58jzg3k";
   };
 
   # ToDo: there might be more impurities than FMA support check
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "The GNU Scientific Library, a large numerical library";
+    homepage = http://www.gnu.org/software/gsl/;
+    license = "GPLv3+";
 
     longDescription = ''
       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
       extensive test suite.
     '';
-
-    homepage = http://www.gnu.org/software/gsl/;
-    license = "GPLv3+";
-
-    maintainers = [ ];
   };
 }