2009-03-25 16:59:02 +01:00
|
|
|
{stdenv, fetchurl, readline ? null, interactive ? false, texinfo ? null}:
|
2007-03-06 23:46:03 +01:00
|
|
|
|
2009-03-25 16:59:02 +01:00
|
|
|
assert interactive -> readline != null;
|
2007-03-06 23:46:03 +01:00
|
|
|
|
2009-02-23 22:26:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bash-4.0";
|
2007-03-06 23:46:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-02-23 22:26:35 +01:00
|
|
|
url = "mirror://gnu/bash/${name}.tar.gz";
|
|
|
|
sha256 = "0605ql0ih55gpi0vfvcm45likzjafa4wjnkxqwq51aa0ysad74wp";
|
2007-03-06 23:46:03 +01:00
|
|
|
};
|
|
|
|
|
2009-01-27 12:03:41 +01:00
|
|
|
NIX_CFLAGS_COMPILE = ''
|
|
|
|
-DSYS_BASHRC="/etc/bashrc"
|
|
|
|
-DSYS_BASH_LOGOUT="/etc/bash_logout"
|
|
|
|
-DDEFAULT_PATH_VALUE="/no-such-path"
|
|
|
|
-DSTANDARD_UTILS_PATH="/no-such-path"
|
|
|
|
-DNON_INTERACTIVE_LOGIN_SHELLS
|
|
|
|
-DSSH_SOURCE_BASHRC
|
|
|
|
'';
|
|
|
|
|
2007-03-06 23:46:03 +01:00
|
|
|
postInstall = "ln -s bash $out/bin/sh";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# For dietlibc builds.
|
|
|
|
./winsize.patch
|
|
|
|
];
|
|
|
|
|
2009-02-23 22:26:35 +01:00
|
|
|
buildInputs = []
|
2008-07-16 15:36:41 +02:00
|
|
|
++ stdenv.lib.optional (texinfo != null) texinfo
|
2009-02-23 22:26:35 +01:00
|
|
|
++ stdenv.lib.optional interactive readline;
|
|
|
|
|
|
|
|
configureFlags = "--with-installed-readline";
|
2007-03-06 23:46:03 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-02-06 14:18:50 +01:00
|
|
|
homepage = http://www.gnu.org/software/bash/;
|
2007-04-04 12:31:09 +02:00
|
|
|
description =
|
|
|
|
"GNU Bourne-Again Shell, the de facto standard shell on Linux" +
|
|
|
|
(if interactive then " (for interactive use)" else "");
|
2009-02-23 22:26:35 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Bash is the shell, or command language interpreter, that will
|
|
|
|
appear in the GNU operating system. Bash is an sh-compatible
|
|
|
|
shell that incorporates useful features from the Korn shell
|
|
|
|
(ksh) and C shell (csh). It is intended to conform to the IEEE
|
|
|
|
POSIX P1003.2/ISO 9945.2 Shell and Tools standard. It offers
|
|
|
|
functional improvements over sh for both programming and
|
|
|
|
interactive use. In addition, most sh scripts can be run by
|
|
|
|
Bash without modification.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
2007-03-06 23:46:03 +01:00
|
|
|
};
|
|
|
|
}
|