* Fixed bashInteractive.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14703
This commit is contained in:
Eelco Dolstra 2009-03-25 15:59:02 +00:00
parent 3fee8acbaa
commit 5e9b323363
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{stdenv, fetchurl, readline, interactive ? false, ncurses ? null, texinfo ? null}:
{stdenv, fetchurl, readline ? null, interactive ? false, texinfo ? null}:
assert interactive -> ncurses != null;
assert interactive -> readline != null;
stdenv.mkDerivation rec {
name = "bash-4.0";

View file

@ -1404,7 +1404,7 @@ let
bash = lowPrio (useFromStdenv "bash"
(import ../shells/bash {
inherit fetchurl stdenv readline;
inherit fetchurl stdenv;
}));
bashInteractive = appendToName "interactive" (import ../shells/bash {