nixpkgs/pkgs/applications/science/math/ecm/default.nix

29 lines
650 B
Nix
Raw Normal View History

2015-07-23 18:21:57 +01:00
{ stdenv, fetchurl, gmp, m4 }:
let
pname = "ecm";
2015-07-23 18:21:57 +01:00
version = "6.4.4";
name = "${pname}-${version}";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
2015-07-23 18:21:57 +01:00
url = http://gforge.inria.fr/frs/download.php/file/32159/ecm-6.4.4.tar.gz;
sha256 = "0v5h2nicz9yx78c2d72plbhi30iq4nxbvphja1s9501db4aah4y8";
};
2015-07-23 18:21:57 +01:00
buildInputs = [ m4 gmp ];
doCheck = true;
meta = {
description = "Elliptic Curve Method for Integer Factorization";
license = stdenv.lib.licenses.gpl2Plus;
homepage = http://ecm.gforge.inria.fr/;
maintainers = [ stdenv.lib.maintainers.roconnor ];
2016-09-21 18:13:24 +01:00
platforms = stdenv.lib.platforms.linux;
};
}