use gimp 3.0
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user