about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-11-25 09:14:56 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-11-25 09:14:56 +0000
commitd910fcbcee35023475e2f0756c90218d8d5cd866 (patch)
tree007f31b09f498bd3f1440df951533b2e5ccd8e68 /pkgs/shells
parent5007314654d9c996b78411fe570991d857c56369 (diff)
Making bash and kbd cross-build
svn path=/nixpkgs/branches/stdenv-updates/; revision=24851
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/bash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix
index 0f4b610f41239..7971a19871c38 100644
--- a/pkgs/shells/bash/default.nix
+++ b/pkgs/shells/bash/default.nix
@@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
       import ./bash-patches.nix patch;
 
   # Note: Bison is needed because the patches above modify parse.y.
-  buildNativeInputs = [bison];
-  buildInputs = stdenv.lib.optional (texinfo != null) texinfo
+  buildNativeInputs = [bison]
+    ++ stdenv.lib.optional (texinfo != null) texinfo
     ++ stdenv.lib.optional interactive readline;
 
   configureFlags = if interactive then "--with-installed-readline" else "--disable-readline";