Merge pull request #167591 from jtojnar/mypaint

mypaint: Fix build
This commit is contained in:
ajs124 2022-04-08 13:28:50 +02:00 committed by GitHub
commit 01dee11f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, fetchpatch
, gtk3
, gettext
, json_c
@ -31,6 +32,15 @@ in buildPythonApplication rec {
fetchSubmodules = true;
};
patches = [
# Fix build due to setuptools issue.
# https://github.com/mypaint/mypaint/pull/1183
(fetchpatch {
url = "https://github.com/mypaint/mypaint/commit/423950bec96d6057eac70442de577364d784a847.patch";
sha256 = "OxJJOi20bFMRibL59zx6svtMrkgeMYyEvbdSXbZHqpc=";
})
];
nativeBuildInputs = [
gettext
pkg-config