gimp-with-plugins: pass all script attributes
to the pluginDerivation
This commit is contained in:
parent
46818a55b1
commit
e93c38ff7c
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue