Packages in this overlay are temporary fixes that automatically revert to the original package once a certain condition is met (e.g., the upstream package version is bumped).
10 lines
269 B
Nix
10 lines
269 B
Nix
final: prev:
|
|
let
|
|
inherit (final) callPackage;
|
|
inherit (final.lib) recurseIntoAttrs;
|
|
|
|
gimpPlugins-gap = recurseIntoAttrs (callPackage ./gimp-gap.nix {});
|
|
in {
|
|
gimpPlugins = if prev.gimpPlugins.gap.version == "2.6.0" then gimpPlugins-gap else prev.gimpPlugins;
|
|
}
|