treewide: unzip buildInputs to nativeBuildInputs (#112302)

This commit is contained in:
Ben Siraphob
2021-02-20 16:01:53 -05:00
committed by GitHub
parent ce5052e931
commit 127733211e
183 changed files with 282 additions and 261 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
sha256 = "18wlvqbxcng8pawimbc8f2422s8fnk840hfr6946lzsxr0ijakvf";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ unzip ] ++ (with perlPackages; [ perl ImageExifTool CpanelJSONXS ]);
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = (with perlPackages; [ perl ImageExifTool CpanelJSONXS ]);
installPhase = ''
mkdir -p "$out/bin"
+2 -2
View File
@@ -13,8 +13,8 @@ stdenv.mkDerivation {
sha256 = "0mzxpnk97f0ww5ds7h4wsval3g4lnrhv6rhspjs7cy4i41gmk8an";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ unzip python ];
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ python ];
broken = true; # Not found.
@@ -10,8 +10,8 @@ stdenv.mkDerivation {
sha256 = "1kiammx46719az6jzrav8yrwz82nk4m72ybj0kpbnvp9wfl3swbb";
};
buildInputs = [ qt4 unzip libGLU ];
nativeBuildInputs = [ qmake4Hook makeWrapper ];
buildInputs = [ qt4 libGLU ];
nativeBuildInputs = [ qmake4Hook makeWrapper unzip ];
# Thanks to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672000#15:
patches = [ ./gcc47.patch ];