lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ntl: init at 9.11.0 (#18507)

authored by

Markus Hauck and committed by
vbgl
d37c8410 54900180

+38
+36
pkgs/development/libraries/ntl/default.nix
··· 1 + { stdenv, fetchurl, perl, gmp, libtool 2 + }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "ntl-${version}"; 6 + version = "9.11.0"; 7 + src = fetchurl { 8 + url = "http://www.shoup.net/ntl/ntl-${version}.tar.gz"; 9 + sha256 = "1wcwxpcby1c50llncz131334qq26lzh3dz21rahymgvakrq0369p"; 10 + }; 11 + 12 + buildInputs = [ perl gmp libtool ]; 13 + 14 + sourceRoot = "${name}/src"; 15 + 16 + enableParallelBuilding = true; 17 + 18 + dontAddPrefix = true; 19 + 20 + configureFlags = [ "DEF_PREFIX=$(out)" "WIZARD=off" "SHARED=on" "NATIVE=off" "CXX=c++" ]; 21 + 22 + # doCheck = true; # takes some time 23 + 24 + meta = { 25 + description = "A Library for doing Number Theory"; 26 + longDescription = '' 27 + NTL is a high-performance, portable C++ library providing data 28 + structures and algorithms for manipulating signed, arbitrary 29 + length integers, and for vectors, matrices, and polynomials over 30 + the integers and over finite fields. 31 + ''; 32 + homepage = http://www.shoup.net/ntl/; 33 + license = stdenv.lib.licenses.gpl2Plus; 34 + platforms = stdenv.lib.platforms.all; 35 + }; 36 + }
+2
pkgs/top-level/all-packages.nix
··· 8950 8950 8951 8951 non = callPackage ../applications/audio/non { }; 8952 8952 8953 + ntl = callPackage ../development/libraries/ntl { }; 8954 + 8953 8955 nspr = callPackage ../development/libraries/nspr { 8954 8956 inherit (darwin.apple_sdk.frameworks) CoreServices; 8955 8957 };