summary refs log tree commit diff
path: root/pkgs/development/libraries/ntl
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-01-02 17:02:33 +0100
committerTimo Kaufmann <timokau@zoho.com>2020-01-02 17:05:19 +0100
commitd41ff9b59fce807001301d5590553666f4ee59d6 (patch)
treed2bcc49df0c52f79c38a35e0c63a6928459c31d1 /pkgs/development/libraries/ntl
parent8636580d6f4801754789dee2dfeefec100ca9ec9 (diff)
downloadnixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar.gz
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar.bz2
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar.lz
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar.xz
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.tar.zst
nixpkgs-d41ff9b59fce807001301d5590553666f4ee59d6.zip
ntl: 11.4.1 -> 11.4.2
Needed for gf2x 1.3.0 compatibility. Upstream says:

> I just uploaded NTL 11.4.2 to http://www.shoup.net/ntl

> This fixes a few small, obscure bugs, including one that  prevents using
> the gf2x-1.3 library.

At https://groups.google.com/d/msgid/sage-devel/992c77f6-ebf9-4049-8900-c45c6b89f4ed%40googlegroups.com
Diffstat (limited to 'pkgs/development/libraries/ntl')
-rw-r--r--pkgs/development/libraries/ntl/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ntl/default.nix b/pkgs/development/libraries/ntl/default.nix
index 10e59c5117c..699931b686b 100644
--- a/pkgs/development/libraries/ntl/default.nix
+++ b/pkgs/development/libraries/ntl/default.nix
@@ -14,11 +14,11 @@ assert withGf2x -> gf2x != null;
 
 stdenv.mkDerivation rec {
   pname = "ntl";
-  version = "11.4.1";
+  version = "11.4.2";
 
   src = fetchurl {
     url = "http://www.shoup.net/ntl/ntl-${version}.tar.gz";
-    sha256 = "03k2hb6yn49d1f9cdig2ci7h5ga0x3nb3li60hh19wdqzg28f1m3";
+    sha256 = "11r3f37psdbjw926kf6bn5bp69aj88f5cchvv1xh2bhrcjdp4r1b";
   };
 
   buildInputs = [
@@ -67,6 +67,8 @@ stdenv.mkDerivation rec {
     # Upstream contact: maintainer is victorshoup on GitHub. Alternatively the
     # email listed on the homepage.
     homepage = http://www.shoup.net/ntl/;
+    # also locally at "${src}/doc/tour-changes.html";
+    changelog = "https://www.shoup.net/ntl/doc/tour-changes.html";
     maintainers = with maintainers; [ timokau ];
     license = licenses.gpl2Plus;
     platforms = platforms.all;