Merge pull request #252305 from tjni/mypaint

mypaint: fetch patch to fix python 3.11 build

authored by

OTABI Tomoya and committed by
GitHub
3ceaa19a 78734454

+8 -2
+8 -2
pkgs/applications/graphics/mypaint/default.nix
··· 29 29 owner = "mypaint"; 30 30 repo = "mypaint"; 31 31 rev = "v${version}"; 32 - sha256 = "rVKcxzWZRLcuxK8xRyRgvitXAh4uOEyqHswLeTdA2Mk="; 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 - sha256 = "OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc="; 41 + hash = "sha256-OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc="; 42 + }) 43 + # https://github.com/mypaint/mypaint/pull/1193 44 + (fetchpatch { 45 + name = "python-3.11-compatibility.patch"; 46 + url = "https://github.com/mypaint/mypaint/commit/032a155b72f2b021f66a994050d83f07342d04af.patch"; 47 + hash = "sha256-EI4WJbpZrCtFMKd6QdXlWpRpIHi37gJffDjclzTLaLc="; 42 48 }) 43 49 ]; 44 50