tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pari: 2.15.2 -> 2.15.3
Mauricio Collares
2 years ago
57c940b9
9926e299
+7
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
pari
default.nix
+7
-6
pkgs/applications/science/math/pari/default.nix
···
15
15
16
16
stdenv.mkDerivation rec {
17
17
pname = "pari";
18
18
-
version = "2.15.2";
18
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
26
-
hash = "sha256-sEYoER7iKHZRmksc2vsy/rqjTq+iT56B9Y+NBX++4N0=";
26
26
+
hash = "sha256-rfWlhjjNr9cqi0i8n0RJcrIzKcjVRaHT7Ru+sbZWkmg=";
27
27
};
28
28
29
29
patches = [
30
30
-
# https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2441
30
30
+
# https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2466
31
31
(fetchpatch {
32
32
-
name = "fix-find_isogenous_from_Atkin.patch";
33
33
-
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pari/patches/bug2441.patch?id=9.8.rc0";
34
34
-
hash = "sha256-DvOUFlFDnopN+MJY6GYRPNabuoHPFch/nNn+49ygznc=";
32
32
+
name = "incorrect-result-from-qfbclassno.patch";
33
33
+
url = "https://pari.math.u-bordeaux.fr/cgi-bin/gitweb.cgi?p=pari.git;a=commitdiff_plain;h=7ca0c2eae87def89fa7253c60e4791a8ef26629d";
34
34
+
excludes = [ "src/test/32/quadclassunit" "CHANGES" ];
35
35
+
hash = "sha256-CQRkIYDFMrWHCoSWGsIydPjGk3w09zzghajlNuq29Jk=";
35
36
})
36
37
];
37
38