summary refs log tree commit diff
path: root/pkgs/development/libraries/ntl
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-08-18 13:51:17 +0200
committerTimo Kaufmann <timokau@zoho.com>2018-08-18 13:51:17 +0200
commitf34589709e6be4e79b466288d6b530de5e611ffa (patch)
tree35bb47a7e37aa66e51fc072d7ad5e4016671932f /pkgs/development/libraries/ntl
parent6f8fe25ccfb138d716d3b1c0cea25e6f11208d45 (diff)
downloadnixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar.gz
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar.bz2
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar.lz
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar.xz
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.tar.zst
nixlib-f34589709e6be4e79b466288d6b530de5e611ffa.zip
ntl: 11.2.1 -> 11.3.0
Diffstat (limited to 'pkgs/development/libraries/ntl')
-rw-r--r--pkgs/development/libraries/ntl/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ntl/default.nix b/pkgs/development/libraries/ntl/default.nix
index 96d3be41235a..ad153c862af7 100644
--- a/pkgs/development/libraries/ntl/default.nix
+++ b/pkgs/development/libraries/ntl/default.nix
@@ -14,10 +14,11 @@ assert withGf2x -> gf2x != null;
 
 stdenv.mkDerivation rec {
   name = "ntl-${version}";
-  version = "11.2.1";
+  version = "11.3.0";
+
   src = fetchurl {
     url = "http://www.shoup.net/ntl/ntl-${version}.tar.gz";
-    sha256 = "04avzmqflx2a33n7v9jj32g83p7m6z712fg1mw308jk5ca2qp489";
+    sha256 = "1pcib3vz1sdqlk0n561wbf7fwq44jm5cpx710w4vqljxgrjd7q1s";
   };
 
   patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
@@ -66,6 +67,8 @@ stdenv.mkDerivation rec {
       length integers, and for vectors, matrices, and polynomials over
       the integers and over finite fields.
     '';
+    # Upstream contact: maintainer is victorshoup on GitHub. Alternatively the
+    # email listed on the homepage.
     homepage = http://www.shoup.net/ntl/;
     maintainers = with maintainers; [ timokau ];
     license = licenses.gpl2Plus;