nixpkgs/pkgs/applications/science/math/msieve/default.nix
Eelco Dolstra c556a6ea46 * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
function, so obsolete it.

svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2012-01-18 20:16:00 +00:00

29 lines
843 B
Nix

{stdenv, fetchurl, zlib, gmp, ecm }:
stdenv.mkDerivation {
name = "msieve-1.48";
src = fetchurl {
url = mirror://sourceforge/msieve/msieve/Msieve%20v1.48/msieve148.tar.gz;
sha256 = "05cm23mpfsbwssqda243sbi8m31j783qx89x9gl7sy8a4dnv7h63";
};
buildInputs = [ zlib gmp ecm ];
ECM = if ecm == null then "0" else "1";
buildFlags = if stdenv.system == "x86_64-linux" then "x86_64"
else if stdenv.system == "i686-linux" then "x86"
else "generic";
installPhase = ''mkdir -p $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 ];
};
}