summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/gimp
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-11-03 13:56:21 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-11-03 14:43:14 +0100
commite93c38ff7cc3500e771dde8488330545c660635e (patch)
tree2ec0a9cac555792ea44a1b102beaf1ea3da3c37a /pkgs/applications/graphics/gimp
parent46818a55b1c3bc06d170d2dc21686d27e6e32d34 (diff)
gimp-with-plugins: pass all script attributes
to the pluginDerivation
Diffstat (limited to 'pkgs/applications/graphics/gimp')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index 298352421931..c11910da5688 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -31,10 +31,10 @@ let
}
);
- scriptDerivation = {name, src} : pluginDerivation {
- inherit name; phases = "extraLib installPhase";
+ scriptDerivation = {src, ...}@attrs : pluginDerivation ({
+ phases = [ "extraLib" "installPhase" ];
installPhase = "installScripts ${src}";
- };
+ } // attrs);
in