treewide: unzip buildInputs to nativeBuildInputs (#112302)

This commit is contained in:
Ben Siraphob
2021-02-20 21:01:53 +00:00
committed by GitHub
parent ce5052e931
commit 127733211e
183 changed files with 282 additions and 261 deletions

View File

@@ -8,15 +8,16 @@ let
configurePhase ? ":",
buildPhase ? ":",
buildInputs ? [ ],
nativeBuildInputs ? [ ],
...
}:
stdenv.mkDerivation (a // {
name = name;
inherit pluginType;
inherit configurePhase buildPhase;
inherit configurePhase buildPhase buildInputs;
buildInputs = [ unzip ] ++ buildInputs;
nativeBuildInputs = [ unzip ] ++ nativeBuildInputs;
installPhase = ''
runHook preInstall