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 {
|
scriptDerivation = {src, ...}@attrs : pluginDerivation ({
|
||||||
inherit name; phases = "extraLib installPhase";
|
phases = [ "extraLib" "installPhase" ];
|
||||||
installPhase = "installScripts ${src}";
|
installPhase = "installScripts ${src}";
|
||||||
};
|
} // attrs);
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user