dotfiles/pkgs/krita/default.nix

15 lines
419 B
Nix
Raw Normal View History

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
./line-painting-api-qpointf.patch
2024-08-06 04:56:55 +07:00
]; });
}).overrideAttrs (old: {
patched = true;
2024-08-06 04:56:55 +07:00
buildInputs = old.buildInputs ++ [ python3Packages.requests ];
})