Merge pull request #167591 from jtojnar/mypaint

mypaint: Fix build

authored by ajs124 and committed by GitHub 01dee11f 2674e146

+10
+10
pkgs/applications/graphics/mypaint/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , gtk3 4 5 , gettext 5 6 , json_c ··· 30 31 sha256 = "rVKcxzWZRLcuxK8xRyRgvitXAh4uOEyqHswLeTdA2Mk="; 31 32 fetchSubmodules = true; 32 33 }; 34 + 35 + patches = [ 36 + # Fix build due to setuptools issue. 37 + # https://github.com/mypaint/mypaint/pull/1183 38 + (fetchpatch { 39 + url = "https://github.com/mypaint/mypaint/commit/423950bec96d6057eac70442de577364d784a847.patch"; 40 + sha256 = "OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc="; 41 + }) 42 + ]; 33 43 34 44 nativeBuildInputs = [ 35 45 gettext