gimp-with-plugins: pass all script attributes

to the pluginDerivation
This commit is contained in:
Jan Tojnar 2019-11-03 13:56:21 +01:00
parent 46818a55b1
commit e93c38ff7c
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -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