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