about summary refs log tree commit diff
path: root/pkgs/applications/science/math/msieve/default.nix
blob: 5d26acbe27cbd7efaa2d6bbd6d7a9a51622fb4ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 ];
  };
}