2024-08-06 04:56:55 +07:00
|
|
|
{ krita, python3Packages }:
|
|
|
|
|
|
|
|
(krita.override {
|
|
|
|
unwrapped = krita.unwrapped.overrideAttrs (old: { patches = old.patches or [] ++ [
|
|
|
|
./painting-api.patch
|
|
|
|
./fix-painting-api-crashes.patch
|
|
|
|
./painting-api-options.patch
|
|
|
|
./painting-api-pressure.patch
|
2024-10-08 21:58:58 +07:00
|
|
|
./line-painting-api-qpointf.patch
|
2024-08-06 04:56:55 +07:00
|
|
|
]; });
|
|
|
|
}).overrideAttrs (old: {
|
2024-10-08 21:58:58 +07:00
|
|
|
patched = true;
|
2024-08-06 04:56:55 +07:00
|
|
|
buildInputs = old.buildInputs ++ [ python3Packages.requests ];
|
|
|
|
})
|