2016-09-17 02:14:00 +03:00
|
|
|
{ stdenv, fetchurl, readline70 ? null, interactive ? false, texinfo ? null
|
|
|
|
, binutils ? null, bison
|
|
|
|
}:
|
2007-03-07 01:46:03 +03:00
|
|
|
|
2016-09-17 02:14:00 +03:00
|
|
|
assert interactive -> readline70 != null;
|
2015-08-06 23:46:49 +03:00
|
|
|
assert stdenv.isDarwin -> binutils != null;
|
2007-03-07 01:46:03 +03:00
|
|
|
|
2010-11-27 18:49:43 +03:00
|
|
|
let
|
2016-09-16 23:05:18 +03:00
|
|
|
version = "4.4";
|
2014-10-23 16:38:54 +04:00
|
|
|
realName = "bash-${version}";
|
2016-09-16 23:05:18 +03:00
|
|
|
shortName = "bash44";
|
2010-11-27 18:49:43 +03:00
|
|
|
baseConfigureFlags = if interactive then "--with-installed-readline" else "--disable-readline";
|
2016-09-16 23:05:18 +03:00
|
|
|
sha256 = "1jyz6snd63xjn6skk7za6psgidsd53k05cr3lksqybi0q6936syq";
|
2015-10-15 14:39:24 +03:00
|
|
|
|
2017-01-05 03:00:13 +03:00
|
|
|
upstreamPatches =
|
|
|
|
let
|
|
|
|
patch = nr: sha256:
|
|
|
|
fetchurl {
|
|
|
|
url = "mirror://gnu/bash/${realName}-patches/${shortName}-${nr}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
import ./bash-4.4-patches.nix patch;
|
|
|
|
|
2015-10-15 14:39:24 +03:00
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2010-11-27 18:49:43 +03:00
|
|
|
in
|
2010-01-26 23:13:23 +03:00
|
|
|
|
2010-01-26 19:34:50 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-05 03:00:13 +03:00
|
|
|
name = "${realName}-p${toString (builtins.length upstreamPatches)}";
|
2007-03-07 01:46:03 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-01-26 22:41:04 +03:00
|
|
|
url = "mirror://gnu/bash/${realName}.tar.gz";
|
2014-10-23 16:38:54 +04:00
|
|
|
inherit sha256;
|
2007-03-07 01:46:03 +03:00
|
|
|
};
|
|
|
|
|
2016-03-07 23:39:26 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2016-09-17 11:51:32 +03:00
|
|
|
outputs = [ "out" "dev" "doc" "info" ];
|
2016-02-21 19:47:44 +03:00
|
|
|
|
|
|
|
# the man pages are small and useful enough
|
|
|
|
outputMan = if interactive then "out" else null;
|
2015-07-27 01:25:53 +03:00
|
|
|
|
2009-01-27 14:03:41 +03: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 22:38:45 +04:00
|
|
|
patchFlags = "-p0";
|
2007-03-07 01:46:03 +03:00
|
|
|
|
2017-01-05 03:00:13 +03:00
|
|
|
patches = upstreamPatches
|
2015-10-15 14:39:24 +03:00
|
|
|
++ optional stdenv.isCygwin ./cygwin-bash-4.3.33-1.src.patch;
|
2009-04-13 22:38:45 +04:00
|
|
|
|
2010-11-27 18:49:43 +03:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = baseConfigureFlags +
|
2017-03-14 01:30:01 +03:00
|
|
|
" bash_cv_job_control_missing=nomissing bash_cv_sys_named_pipes=nomissing bash_cv_getcwd_malloc=yes" +
|
2015-10-15 14:39:24 +03:00
|
|
|
optionalString stdenv.isCygwin ''
|
2015-05-29 10:46:37 +03:00
|
|
|
--without-libintl-prefix --without-libiconv-prefix
|
|
|
|
--with-installed-readline
|
|
|
|
bash_cv_dev_stdin=present
|
|
|
|
bash_cv_dev_fd=standard
|
2015-10-15 14:39:24 +03:00
|
|
|
bash_cv_termcap_lib=libncurses
|
2015-05-29 10:46:37 +03:00
|
|
|
'';
|
2010-11-27 18:49:43 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = baseConfigureFlags;
|
|
|
|
|
2009-04-13 22:38:45 +04:00
|
|
|
# Note: Bison is needed because the patches above modify parse.y.
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [bison]
|
2015-10-15 14:39:24 +03:00
|
|
|
++ optional (texinfo != null) texinfo
|
|
|
|
++ optional stdenv.isDarwin binutils;
|
2011-09-13 21:50:03 +04:00
|
|
|
|
2016-09-17 02:14:00 +03:00
|
|
|
buildInputs = optional interactive readline70;
|
|
|
|
|
2013-01-23 19:32:57 +04:00
|
|
|
# Bash randomly fails to build because of a recursive invocation to
|
|
|
|
# build `version.h'.
|
|
|
|
enableParallelBuilding = false;
|
2013-01-17 15:39:48 +04:00
|
|
|
|
2009-11-08 03:32:12 +03:00
|
|
|
postInstall = ''
|
|
|
|
ln -s bash "$out/bin/sh"
|
2017-04-22 23:37:56 +03:00
|
|
|
rm $out/lib/bash/Makefile.inc
|
2011-09-28 18:37:03 +04:00
|
|
|
'';
|
2009-11-08 03:32:12 +03:00
|
|
|
|
2015-10-15 14:39:24 +03:00
|
|
|
postFixup = if interactive
|
|
|
|
then ''
|
|
|
|
substituteInPlace "$out/bin/bashbug" \
|
|
|
|
--replace '${stdenv.shell}' "$out/bin/bash"
|
|
|
|
''
|
2014-08-27 03:14:09 +04:00
|
|
|
# most space is taken by locale data
|
2015-10-15 14:39:24 +03:00
|
|
|
else ''
|
|
|
|
rm -r "$out/share" "$out/bin/bashbug"
|
2014-08-27 03:14:09 +04:00
|
|
|
'';
|
2009-11-08 03:32:12 +03:00
|
|
|
|
2015-10-15 14:39:24 +03:00
|
|
|
meta = with stdenv.lib; {
|
2008-02-06 16:18:50 +03:00
|
|
|
homepage = http://www.gnu.org/software/bash/;
|
2007-04-04 14:31:09 +04:00
|
|
|
description =
|
|
|
|
"GNU Bourne-Again Shell, the de facto standard shell on Linux" +
|
|
|
|
(if interactive then " (for interactive use)" else "");
|
2009-02-24 00:26:35 +03: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 14:39:24 +03:00
|
|
|
license = licenses.gpl3Plus;
|
2009-11-08 03:32:12 +03:00
|
|
|
|
2015-10-15 14:39:24 +03:00
|
|
|
platforms = platforms.all;
|
2015-03-20 18:52:02 +03:00
|
|
|
|
2016-05-16 23:30:20 +03:00
|
|
|
maintainers = [ maintainers.peti ];
|
2007-03-07 01:46:03 +03:00
|
|
|
};
|
2010-12-05 00:45:37 +03:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/bash";
|
|
|
|
};
|
2010-01-26 19:34:50 +03:00
|
|
|
}
|