Package for msieve.

This would be better if gmp-emc were packaged as well.

svn path=/nixpkgs/trunk/; revision=26915
This commit is contained in:
Russell O'Connor 2011-04-21 12:48:07 +00:00
parent 4841599814
commit 3db6f63711
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl, zlib, gmp}:
stdenv.mkDerivation {
name = "msieve-1.48";
src = fetchurl {
url = mirror://sourceforge/msieve/msieve/Msieve%20v1.48/msieve148.tar.gz;
sha256 = "05cm23mpfsbwssqda243sbi8m31j783qx89x9gl7sy8a4dnv7h63";
};
buildInputs = [ zlib gmp ];
buildFlags = if stdenv.system == "x86_64-linux" then "x86_64"
else if stdenv.system == "i686-linux" then "x86"
else "generic";
installPhase = ''ensureDir $out/bin/
cp msieve $out/bin/'';
meta = {
description = "a C library implementing a suite of algorithms to factor large integers";
license = stdenv.lib.licenses.publicDomain;
homepage = http://msieve.sourceforge.net/;
maintainers = [ stdenv.lib.maintainers.roconnor ];
};
}

View File

@ -7609,6 +7609,8 @@ let
withX = true;
};
msieve = callPackage ../applications/science/math/msieve { };
yacas = callPackage ../applications/science/math/yacas { };
### SCIENCE / MISC