use gimp 3.0

This commit is contained in:
2025-03-23 01:50:48 -04:00
parent dd0313035e
commit 6a3b781398
2 changed files with 34 additions and 16 deletions

View File

@@ -61,7 +61,25 @@
}
);
pkgs = (import nixpkgs { });
pkgs' =
(import nixpkgs {
system = "x86_64-linux";
}).applyPatches
{
name = "nixpkgs";
src = inputs.nixpkgs;
patches = [
# https://github.com/NixOS/nixpkgs/pull/67576
# gimp 3.0
(builtins.fetchurl {
url = "https://github.com/NixOS/nixpkgs/pull/67576.diff";
sha256 = "02fk89563m2xfrl7kl9s1hh4bcppwrmd60j542kyl64nd2cvp9ss";
})
];
};
pkgs = import pkgs' {
system = "x86_64-linux";
};
in
{
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;