about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2015-07-26 20:09:10 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2015-07-26 20:09:10 +0300
commite9b5deb973d37830da6249dde63071b607e81ac2 (patch)
tree2b78d25aa35417581b0c6045095fed95f08f71e2 /pkgs
parentd3fa021448b4061f11ec41f0167573d17a02d2e7 (diff)
parent08750f988aef531922f02017366425ffa868294c (diff)
downloadnixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar.gz
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar.bz2
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar.lz
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar.xz
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.tar.zst
nixlib-e9b5deb973d37830da6249dde63071b607e81ac2.zip
Merge pull request #8964 from vbgl/ecm
ecm: 6.2.3 -> 6.4.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/science/math/ecm/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/science/math/ecm/default.nix b/pkgs/applications/science/math/ecm/default.nix
index 5d378a48dd9e..53b289983a4a 100644
--- a/pkgs/applications/science/math/ecm/default.nix
+++ b/pkgs/applications/science/math/ecm/default.nix
@@ -1,8 +1,8 @@
-{stdenv, fetchurl, gmp}:
+{ stdenv, fetchurl, gmp, m4 }:
 
 let
   pname = "ecm";
-  version = "6.2.3";
+  version = "6.4.4";
   name = "${pname}-${version}";
 in
 
@@ -10,11 +10,11 @@ stdenv.mkDerivation {
   inherit name;
 
   src = fetchurl {
-      url = https://gforge.inria.fr/frs/download.php/22124/ecm-6.2.3.tar.gz;
-      sha256 = "1iwwhbz5vwl7j6dyh292hahc8yy16pq9mmm7mxy49zhxd81vy08p";
+      url = http://gforge.inria.fr/frs/download.php/file/32159/ecm-6.4.4.tar.gz;
+      sha256 = "0v5h2nicz9yx78c2d72plbhi30iq4nxbvphja1s9501db4aah4y8";
     };
 
-  buildInputs = [ gmp ];
+  buildInputs = [ m4 gmp ];
 
   doCheck = true;
 
@@ -23,5 +23,6 @@ stdenv.mkDerivation {
     license = stdenv.lib.licenses.gpl2Plus;
     homepage = http://ecm.gforge.inria.fr/;
     maintainers = [ stdenv.lib.maintainers.roconnor ];
+    platforms = stdenv.lib.platforms.all;
   };
 }