pari: 2.15.2 -> 2.15.3

+7 -6
+7 -6
pkgs/applications/science/math/pari/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "pari"; 18 - version = "2.15.2"; 18 + version = "2.15.3"; 19 19 20 20 src = fetchurl { 21 21 urls = [ ··· 23 23 # old versions are at the url below 24 24 "https://pari.math.u-bordeaux.fr/pub/pari/OLD/${lib.versions.majorMinor version}/${pname}-${version}.tar.gz" 25 25 ]; 26 - hash = "sha256-sEYoER7iKHZRmksc2vsy/rqjTq+iT56B9Y+NBX++4N0="; 26 + hash = "sha256-rfWlhjjNr9cqi0i8n0RJcrIzKcjVRaHT7Ru+sbZWkmg="; 27 27 }; 28 28 29 29 patches = [ 30 - # https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2441 30 + # https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2466 31 31 (fetchpatch { 32 - name = "fix-find_isogenous_from_Atkin.patch"; 33 - url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pari/patches/bug2441.patch?id=9.8.rc0"; 34 - hash = "sha256-DvOUFlFDnopN+MJY6GYRPNabuoHPFch/nNn+49ygznc="; 32 + name = "incorrect-result-from-qfbclassno.patch"; 33 + url = "https://pari.math.u-bordeaux.fr/cgi-bin/gitweb.cgi?p=pari.git;a=commitdiff_plain;h=7ca0c2eae87def89fa7253c60e4791a8ef26629d"; 34 + excludes = [ "src/test/32/quadclassunit" "CHANGES" ]; 35 + hash = "sha256-CQRkIYDFMrWHCoSWGsIydPjGk3w09zzghajlNuq29Jk="; 35 36 }) 36 37 ]; 37 38