47 lines
939 B
Nix
47 lines
939 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchsvn,
|
|
zlib,
|
|
gmp,
|
|
ecm,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "msieve";
|
|
version = "1056";
|
|
|
|
src = fetchsvn {
|
|
url = "svn://svn.code.sf.net/p/msieve/code/trunk";
|
|
rev = version;
|
|
hash = "sha256-6ErVn4pYPMG5VFjOQURLsHNpN0pGdp55+rjY8988onU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
zlib
|
|
gmp
|
|
ecm
|
|
];
|
|
|
|
ECM = if ecm == null then "0" else "1";
|
|
|
|
# Doesn't hurt Linux but lets clang-based platforms like Darwin work fine too
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
"all"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin/
|
|
cp msieve $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
description = "C library implementing a suite of algorithms to factor large integers";
|
|
mainProgram = "msieve";
|
|
license = lib.licenses.publicDomain;
|
|
homepage = "http://msieve.sourceforge.net/";
|
|
maintainers = [ lib.maintainers.roconnor ];
|
|
platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin;
|
|
};
|
|
}
|