2011-09-24 08:58:19 +01:00
|
|
|
{ stdenv, fetchurl, readline ? null, interactive ? false, texinfo ? null, bison }:
|
2007-03-06 22:46:03 +00:00
|
|
|
|
2009-03-25 15:59:02 +00:00
|
|
|
assert interactive -> readline != null;
|
2007-03-06 22:46:03 +00:00
|
|
|
|
2010-11-27 15:49:43 +00:00
|
|
|
let
|
2011-09-28 15:37:03 +01:00
|
|
|
realName = "bash-4.2";
|
2010-11-27 15:49:43 +00:00
|
|
|
baseConfigureFlags = if interactive then "--with-installed-readline" else "--disable-readline";
|
|
|
|
in
|
2010-01-26 20:13:23 +00:00
|
|
|
|
2010-01-26 16:34:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-26 20:13:23 +00:00
|
|
|
name = "${realName}-p${toString (builtins.length patches)}";
|
2007-03-06 22:46:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-01-26 19:41:04 +00:00
|
|
|
url = "mirror://gnu/bash/${realName}.tar.gz";
|
2011-09-28 15:37:03 +01:00
|
|
|
sha256 = "a27a1179ec9c0830c65c6aa5d7dab60f7ce1a2a608618570f96bfa72e95ab3d8";
|
2007-03-06 22:46:03 +00:00
|
|
|
};
|
|
|
|
|
2009-01-27 11:03:41 +00: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
|
|
|
|
'';
|
|
|
|
|
2009-04-13 19:38:45 +01:00
|
|
|
patchFlags = "-p0";
|
2007-03-06 22:46:03 +00:00
|
|
|
|
2009-04-13 19:38:45 +01:00
|
|
|
patches =
|
|
|
|
let
|
|
|
|
patch = nr: sha256:
|
|
|
|
fetchurl {
|
2011-09-28 15:37:03 +01:00
|
|
|
url = "mirror://gnu/bash/bash-4.2-patches/bash42-${nr}";
|
2009-04-13 19:38:45 +01:00
|
|
|
inherit sha256;
|
|
|
|
};
|
2009-11-08 00:32:12 +00:00
|
|
|
in
|
2011-09-28 15:37:03 +01:00
|
|
|
import ./bash-4.2-patches.nix patch;
|
2009-04-13 19:38:45 +01:00
|
|
|
|
2010-11-27 15:49:43 +00:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = baseConfigureFlags +
|
|
|
|
" bash_cv_job_control_missing=nomissing bash_cv_sys_named_pipes=nomissing";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = baseConfigureFlags;
|
|
|
|
|
2009-04-13 19:38:45 +01:00
|
|
|
# Note: Bison is needed because the patches above modify parse.y.
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [bison]
|
2010-11-25 09:14:56 +00:00
|
|
|
++ stdenv.lib.optional (texinfo != null) texinfo
|
2009-02-23 21:26:35 +00:00
|
|
|
++ stdenv.lib.optional interactive readline;
|
2011-09-13 18:50:03 +01:00
|
|
|
|
2013-01-23 15:32:57 +00:00
|
|
|
# Bash randomly fails to build because of a recursive invocation to
|
|
|
|
# build `version.h'.
|
|
|
|
enableParallelBuilding = false;
|
2013-01-17 11:39:48 +00:00
|
|
|
|
2009-11-08 00:32:12 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Add an `sh' -> `bash' symlink.
|
|
|
|
ln -s bash "$out/bin/sh"
|
2011-09-28 15:37:03 +01:00
|
|
|
'';
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2007-03-06 22:46:03 +00:00
|
|
|
meta = {
|
2008-02-06 13:18:50 +00:00
|
|
|
homepage = http://www.gnu.org/software/bash/;
|
2007-04-04 11:31:09 +01:00
|
|
|
description =
|
|
|
|
"GNU Bourne-Again Shell, the de facto standard shell on Linux" +
|
|
|
|
(if interactive then " (for interactive use)" else "");
|
2009-02-23 21:26:35 +00: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+";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-03-06 22:46:03 +00:00
|
|
|
};
|
2010-12-04 21:45:37 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/bash";
|
|
|
|
};
|
2010-01-26 16:34:50 +00:00
|
|
|
}
|