3
0
Fork 0
forked from mirrors/nixpkgs

buildNativeInputs -> nativeBuildInputs

This commit is contained in:
Eelco Dolstra 2013-02-15 13:38:07 +01:00
parent 2aa6f262cb
commit a25b27a7f8
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ stdenv.mkDerivation rec {
++ optional libpngSupport libpng
;
buildNativeInputs = [ yasm python3 ];
nativeBuildInputs = [ yasm python3 ];
postConfigure = ''
patchShebangs TOOLS

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ alsaLib ncurses libsamplerate ];
buildNativeInputs = [ gettext ];
nativeBuildInputs = [ gettext ];
configureFlags = "--disable-xmlto";