2015-08-06 22:46:49 +02:00
|
|
|
{ stdenv, fetchurl, readline ? null, interactive ? false, texinfo ? null, binutils ? null, bison }:
|
2007-03-06 23:46:03 +01:00
|
|
|
|
2009-03-25 16:59:02 +01:00
|
|
|
assert interactive -> readline != null;
|
2015-08-06 22:46:49 +02:00
|
|
|
assert stdenv.isDarwin -> binutils != null;
|
2007-03-06 23:46:03 +01:00
|
|
|
|
2010-11-27 16:49:43 +01:00
|
|
|
let
|
2015-05-29 09:46:37 +02:00
|
|
|
version = "4.3";
|
2014-10-23 14:38:54 +02:00
|
|
|
realName = "bash-${version}";
|
2015-05-29 09:46:37 +02:00
|
|
|
shortName = "bash43";
|
2010-11-27 16:49:43 +01:00
|
|
|
baseConfigureFlags = if interactive then "--with-installed-readline" else "--disable-readline";
|
2015-05-29 09:46:37 +02:00
|
|
|
sha256 = "1m14s1f61mf6bijfibcjm9y6pkyvz6gibyl8p4hxq90fisi8gimg";
|
2015-10-15 13:39:24 +02:00
|
|
|
|
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2010-11-27 16:49:43 +01:00
|
|
|
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";
|
2014-10-23 14:38:54 +02:00
|
|
|
inherit sha256;
|
2007-03-06 23:46:03 +01:00
|
|
|
};
|
|
|
|
|
2016-03-07 21:39:26 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2016-04-25 17:12:49 +02:00
|
|
|
outputs = [ "out" "doc" "info" ];
|
2016-02-21 17:47:44 +01:00
|
|
|
|
|
|
|
# the man pages are small and useful enough
|
|
|
|
outputMan = if interactive then "out" else null;
|
2015-07-27 00:25:53 +02: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 =
|
2014-09-25 14:40:44 +02:00
|
|
|
(let
|
2009-04-13 20:38:45 +02:00
|
|
|
patch = nr: sha256:
|
|
|
|
fetchurl {
|
2014-10-23 14:38:54 +02:00
|
|
|
url = "mirror://gnu/bash/${realName}-patches/${shortName}-${nr}";
|
2009-04-13 20:38:45 +02:00
|
|
|
inherit sha256;
|
|
|
|
};
|
2009-11-08 01:32:12 +01:00
|
|
|
in
|
2015-05-29 09:46:37 +02:00
|
|
|
import ./bash-4.3-patches.nix patch)
|
2015-10-15 13:39:24 +02:00
|
|
|
++ optional stdenv.isCygwin ./cygwin-bash-4.3.33-1.src.patch;
|
2009-04-13 20:38:45 +02:00
|
|
|
|
2010-11-27 16:49:43 +01:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = baseConfigureFlags +
|
2015-05-29 09:46:37 +02:00
|
|
|
" bash_cv_job_control_missing=nomissing bash_cv_sys_named_pipes=nomissing" +
|
2015-10-15 13:39:24 +02:00
|
|
|
optionalString stdenv.isCygwin ''
|
2015-05-29 09:46:37 +02:00
|
|
|
--without-libintl-prefix --without-libiconv-prefix
|
|
|
|
--with-installed-readline
|
|
|
|
bash_cv_dev_stdin=present
|
|
|
|
bash_cv_dev_fd=standard
|
2015-10-15 13:39:24 +02:00
|
|
|
bash_cv_termcap_lib=libncurses
|
2015-05-29 09:46:37 +02:00
|
|
|
'';
|
2010-11-27 16:49:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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]
|
2015-10-15 13:39:24 +02:00
|
|
|
++ optional (texinfo != null) texinfo
|
|
|
|
++ optional interactive readline
|
|
|
|
++ optional stdenv.isDarwin binutils;
|
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 = ''
|
|
|
|
ln -s bash "$out/bin/sh"
|
2011-09-28 16:37:03 +02:00
|
|
|
'';
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2015-10-15 13:39:24 +02:00
|
|
|
postFixup = if interactive
|
|
|
|
then ''
|
|
|
|
substituteInPlace "$out/bin/bashbug" \
|
|
|
|
--replace '${stdenv.shell}' "$out/bin/bash"
|
|
|
|
''
|
2014-08-27 01:14:09 +02:00
|
|
|
# most space is taken by locale data
|
2015-10-15 13:39:24 +02:00
|
|
|
else ''
|
|
|
|
rm -r "$out/share" "$out/bin/bashbug"
|
2014-08-27 01:14:09 +02:00
|
|
|
'';
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2015-10-15 13:39:24 +02:00
|
|
|
meta = with stdenv.lib; {
|
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.
|
|
|
|
'';
|
|
|
|
|
2015-10-15 13:39:24 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2015-10-15 13:39:24 +02:00
|
|
|
platforms = platforms.all;
|
2015-03-20 16:52:02 +01:00
|
|
|
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = [ maintainers.peti ];
|
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
|
|
|
}
|