about summary refs log tree commit diff
path: root/pkgs/development/libraries/ntl/default.nix
blob: 32467e4849b54463f49cd1973a7d33ece8e322a7 (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
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchurl, perl, gmp, libtool
}:

stdenv.mkDerivation rec {
  name = "ntl-${version}";
  version = "9.11.0";
  src = fetchurl {
    url = "http://www.shoup.net/ntl/ntl-${version}.tar.gz";
    sha256 = "1wcwxpcby1c50llncz131334qq26lzh3dz21rahymgvakrq0369p";
  };

  buildInputs = [ perl gmp libtool ];

  sourceRoot = "${name}/src";

  enableParallelBuilding = true;

  dontAddPrefix = true;

  configureFlags = [ "DEF_PREFIX=$(out)" "WIZARD=off" "SHARED=on" "NATIVE=off" "CXX=c++" ];

  # doCheck = true; # takes some time

  meta = {
    description = "A Library for doing Number Theory";
    longDescription = ''
      NTL is a high-performance, portable C++ library providing data
      structures and algorithms for manipulating signed, arbitrary
      length integers, and for vectors, matrices, and polynomials over
      the integers and over finite fields.
    '';
    homepage = http://www.shoup.net/ntl/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.all;
  };
}