Merge pull request #133507 from Stunkymonkey/gimp-plugins

gimp-plugins: deprecate phases
This commit is contained in:
Maximilian Bosch 2021-08-19 13:13:48 +02:00 committed by GitHub
commit 0de79c608b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,13 @@ let
);
scriptDerivation = {src, ...}@attrs : pluginDerivation ({
phases = [ "extraLib" "installPhase" ];
installPhase = "installScripts ${src}";
prePhases = "extraLib";
dontUnpack = true;
installPhase = ''
runHook preInstall
installScripts ${src}
runHook postInstall
'';
} // attrs);
in
{