* Fixed bashInteractive.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14703
This commit is contained in:
parent
3fee8acbaa
commit
5e9b323363
@ -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";
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user