tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mypaint: fetch patch to fix python 3.11 build
Theodore Ni
2 years ago
d6c6b107
a63a64b5
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
mypaint
default.nix
+8
-2
pkgs/applications/graphics/mypaint/default.nix
···
29
29
owner = "mypaint";
30
30
repo = "mypaint";
31
31
rev = "v${version}";
32
32
-
sha256 = "rVKcxzWZRLcuxK8xRyRgvitXAh4uOEyqHswLeTdA2Mk=";
32
32
+
hash = "sha256-rVKcxzWZRLcuxK8xRyRgvitXAh4uOEyqHswLeTdA2Mk=";
33
33
fetchSubmodules = true;
34
34
};
35
35
···
38
38
# https://github.com/mypaint/mypaint/pull/1183
39
39
(fetchpatch {
40
40
url = "https://github.com/mypaint/mypaint/commit/423950bec96d6057eac70442de577364d784a847.patch";
41
41
-
sha256 = "OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc=";
41
41
+
hash = "sha256-OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc=";
42
42
+
})
43
43
+
# https://github.com/mypaint/mypaint/pull/1193
44
44
+
(fetchpatch {
45
45
+
name = "python-3.11-compatibility.patch";
46
46
+
url = "https://github.com/mypaint/mypaint/commit/032a155b72f2b021f66a994050d83f07342d04af.patch";
47
47
+
hash = "sha256-EI4WJbpZrCtFMKd6QdXlWpRpIHi37gJffDjclzTLaLc=";
42
48
})
43
49
];
44
50