tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pynac: add more patches, link to sage trac
Mauricio Collares
4 years ago
391028eb
2a95fe1a
+28
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
pynac
default.nix
+28
-7
pkgs/applications/science/math/pynac/default.nix
···
22
};
23
24
patches = [
25
-
(fetchpatch {
26
-
name = "handle_factor.patch";
27
-
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/handle_factor.patch?h=9.3.rc3";
28
-
sha256 = "sha256-U1lb5qwBqZZgklfDMhBX4K5u8bz5x42O4w7hyNy2YVw=";
29
-
})
30
0
31
(fetchpatch {
32
name = "power_inf_loop.patch";
33
-
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/power_inf_loop.patch?h=9.3.rc3";
34
sha256 = "sha256-VYeaJl8u2wl7FQ/6xnpZv1KpdNYEmJoPhuMrBADyTRs=";
35
})
36
0
0
0
0
0
0
0
0
37
(fetchpatch {
38
name = "too_much_sub.patch";
39
-
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/too_much_sub.patch?h=9.3.rc3";
40
sha256 = "sha256-lw7xSQ/l+rzPu+ghWF4omYF0mKksGGPuuHJTktvbdis=";
0
0
0
0
0
0
0
0
0
0
0
0
0
0
41
})
42
];
43
···
22
};
23
24
patches = [
25
+
# the five patches below are included with sage 9.3. since pynac
26
+
# is a self-described "Sage Math support library", we include them
27
+
# here.
0
0
28
29
+
# https://trac.sagemath.org/ticket/30688
30
(fetchpatch {
31
name = "power_inf_loop.patch";
32
+
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/power_inf_loop.patch?h=9.3";
33
sha256 = "sha256-VYeaJl8u2wl7FQ/6xnpZv1KpdNYEmJoPhuMrBADyTRs=";
34
})
35
36
+
# https://trac.sagemath.org/ticket/31479
37
+
(fetchpatch {
38
+
name = "disable_poly_mul_expand.patch";
39
+
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/disable_poly_mul_expand.patch?h=9.3";
40
+
sha256 = "sha256-gRjoltU9Tzj7fjNyE25fY+iyDxERzSTOMigzxFpUqPo=";
41
+
})
42
+
43
+
# https://trac.sagemath.org/ticket/31530
44
(fetchpatch {
45
name = "too_much_sub.patch";
46
+
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/too_much_sub.patch?h=9.3";
47
sha256 = "sha256-lw7xSQ/l+rzPu+ghWF4omYF0mKksGGPuuHJTktvbdis=";
48
+
})
49
+
50
+
# https://trac.sagemath.org/ticket/31554
51
+
(fetchpatch {
52
+
name = "handle_factor.patch";
53
+
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/handle_factor.patch?h=9.3";
54
+
sha256 = "sha256-U1lb5qwBqZZgklfDMhBX4K5u8bz5x42O4w7hyNy2YVw=";
55
+
})
56
+
57
+
# https://trac.sagemath.org/ticket/31645
58
+
(fetchpatch {
59
+
name = "seriesbug.patch";
60
+
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/seriesbug.patch?h=9.3";
61
+
sha256 = "sha256-b3//oirN7JHDYqrvE+tDYcnKpSYQJ08yBzcNlII2Dts=";
62
})
63
];
64