about summary refs log tree commit diff
path: root/pkgs/applications/science/math/pari
diff options
context:
space:
mode:
authorMauricio Collares <mauricio@collares.org>2023-07-12 08:53:37 +0100
committerMauricio Collares <mauricio@collares.org>2023-07-12 08:53:37 +0100
commit63fd36b9f1c3b38d7817a3c8b30c8b71954491ae (patch)
treed4e5bbb6c2df781e54b0954c54ab12f5dd993231 /pkgs/applications/science/math/pari
parent4a729ce4b1fe5ec4fffc71c67c96aa5184ebb462 (diff)
pari: 2.15.3 -> 2.15.4
Diffstat (limited to 'pkgs/applications/science/math/pari')
-rw-r--r--pkgs/applications/science/math/pari/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/applications/science/math/pari/default.nix b/pkgs/applications/science/math/pari/default.nix
index ee3caaff12773..44647ce81398d 100644
--- a/pkgs/applications/science/math/pari/default.nix
+++ b/pkgs/applications/science/math/pari/default.nix
@@ -15,7 +15,7 @@ assert withThread -> libpthreadstubs != null;
 
 stdenv.mkDerivation rec {
   pname = "pari";
-  version = "2.15.3";
+  version = "2.15.4";
 
   src = fetchurl {
     urls = [
@@ -23,19 +23,9 @@ stdenv.mkDerivation rec {
       # old versions are at the url below
       "https://pari.math.u-bordeaux.fr/pub/pari/OLD/${lib.versions.majorMinor version}/${pname}-${version}.tar.gz"
     ];
-    hash = "sha256-rfWlhjjNr9cqi0i8n0RJcrIzKcjVRaHT7Ru+sbZWkmg=";
+    hash = "sha256-w1Rb/uDG37QLd/tLurr5mdguYAabn20ovLbPAEyMXA8=";
   };
 
-  patches = [
-    # https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2466
-    (fetchpatch {
-      name = "incorrect-result-from-qfbclassno.patch";
-      url = "https://pari.math.u-bordeaux.fr/cgi-bin/gitweb.cgi?p=pari.git;a=commitdiff_plain;h=7ca0c2eae87def89fa7253c60e4791a8ef26629d";
-      excludes = [ "src/test/32/quadclassunit" "CHANGES" ];
-      hash = "sha256-CQRkIYDFMrWHCoSWGsIydPjGk3w09zzghajlNuq29Jk=";
-    })
-  ];
-
   buildInputs = [
     gmp
     libX11