Rename buildNativeInputs -> nativeBuildInputs

Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
This commit is contained in:
Eelco Dolstra
2012-12-28 19:20:09 +01:00
parent 5be0a9acd7
commit ab3eeabfed
363 changed files with 416 additions and 416 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "1rx9x3fp848w4nny7irdkcpkan9fcx24d99v5dkwgkyq7wc76f5d";
};
buildNativeInputs = [ perl ];
nativeBuildInputs = [ perl ];
buildInputs = [ gmp ]
++ stdenv.lib.optional aclSupport acl
++ stdenv.lib.optional selinuxSupport libselinux
+1 -1
View File
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks3";
};
buildNativeInputs = [coreutils];
nativeBuildInputs = [coreutils];
patches = [ ./findutils-path.patch ./change_echo_path.patch ];
+1 -1
View File
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
sha256 = "0n64hpmsccvicagvr0c6v0kgp2yw0kgnd3jvsyd26cnwgs7c6kkq";
};
buildNativeInputs = [ flex bison ];
nativeBuildInputs = [ flex bison ];
buildInputs = [ ncurses libusb freetype gettext devicemapper ]
++ stdenv.lib.optional doCheck qemu;
+1 -1
View File
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
'';
buildInputs = [ freetype ];
buildNativeInputs = [ perl ];
nativeBuildInputs = [ perl ];
patches = ./gentoo-makefile.patch; # also contains the freetype patch
+1 -1
View File
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "09swwr6x46qxmwylrylnyqh4pznr0swla9gijggwxxw8dw82r840";
};
buildNativeInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkgconfig ];
propagatedBuildInputs = [ libusb1 libplist ];
patchPhase =
+1 -1
View File
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
dontCrossStrip = true;
buildNativeInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb libusb1 autoconf automake confuse ] ++
stdenv.lib.optional (gccCross != null) gccCross;