2022-12-20 16:29:59 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-12-21 23:41:27 +00:00
|
|
|
, buildPackages
|
|
|
|
, fetchurl
|
2024-05-21 21:50:29 +00:00
|
|
|
, updateAutotoolsGnuConfigScriptsHook
|
2020-12-21 23:41:27 +00:00
|
|
|
, bison
|
|
|
|
, util-linux
|
|
|
|
|
|
|
|
# patch for cygwin requires readline support
|
|
|
|
, interactive ? stdenv.hostPlatform.isCygwin
|
2022-12-25 20:06:50 +00:00
|
|
|
, readline
|
2020-12-21 23:41:27 +00:00
|
|
|
, withDocs ? false
|
2022-12-25 20:06:50 +00:00
|
|
|
, texinfo
|
2022-02-19 23:34:55 +00:00
|
|
|
, forFHSEnv ? false
|
2023-02-12 12:48:04 +00:00
|
|
|
|
|
|
|
, pkgsStatic
|
2019-01-08 05:54:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2022-12-20 16:29:59 +00:00
|
|
|
upstreamPatches = import ./bash-5.2-patches.nix (nr: sha256: fetchurl {
|
|
|
|
url = "mirror://gnu/bash/bash-5.2-patches/bash52-${nr}";
|
2019-01-08 05:54:31 +00:00
|
|
|
inherit sha256;
|
|
|
|
});
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2024-01-17 11:08:09 +00:00
|
|
|
pname = "bash${lib.optionalString interactive "-interactive"}";
|
|
|
|
version = "5.2${patch_suffix}";
|
|
|
|
patch_suffix = "p${toString (builtins.length upstreamPatches)}";
|
2019-01-08 05:54:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-17 11:08:09 +00:00
|
|
|
url = "mirror://gnu/bash/bash-${lib.removeSuffix patch_suffix version}.tar.gz";
|
2022-12-20 16:29:59 +00:00
|
|
|
sha256 = "sha256-oTnBZt9/9EccXgczBRZC7lVWwcyKSnjxRVg8XIGrMvs=";
|
2019-01-08 05:54:31 +00:00
|
|
|
};
|
|
|
|
|
2022-09-23 14:47:53 +00:00
|
|
|
hardeningDisable = [ "format" ]
|
2022-12-20 16:29:59 +00:00
|
|
|
# bionic libc is super weird and has issues with fortify outside of its own libc, check this comment:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/192630#discussion_r978985593
|
|
|
|
# or you can check libc/include/sys/cdefs.h in bionic source code
|
|
|
|
++ lib.optional (stdenv.hostPlatform.libc == "bionic") "fortify";
|
2019-01-08 05:54:31 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" "doc" "info" ];
|
|
|
|
|
2023-01-23 12:35:14 +00:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = ''
|
2019-01-08 05:54:31 +00:00
|
|
|
-DSYS_BASHRC="/etc/bashrc"
|
|
|
|
-DSYS_BASH_LOGOUT="/etc/bash_logout"
|
2022-12-25 20:06:50 +00:00
|
|
|
'' + lib.optionalString (!forFHSEnv) ''
|
2019-01-08 05:54:31 +00:00
|
|
|
-DDEFAULT_PATH_VALUE="/no-such-path"
|
|
|
|
-DSTANDARD_UTILS_PATH="/no-such-path"
|
2022-02-19 23:34:55 +00:00
|
|
|
'' + ''
|
2019-01-08 05:54:31 +00:00
|
|
|
-DNON_INTERACTIVE_LOGIN_SHELLS
|
|
|
|
-DSSH_SOURCE_BASHRC
|
|
|
|
'';
|
|
|
|
|
2021-03-22 11:27:10 +00:00
|
|
|
patchFlags = [ "-p0" ];
|
2019-01-08 05:54:31 +00:00
|
|
|
|
2023-01-23 11:55:24 +00:00
|
|
|
patches = upstreamPatches ++ [
|
|
|
|
./pgrp-pipe-5.patch
|
2023-07-24 22:23:14 +00:00
|
|
|
# Apply parallel build fix pending upstream inclusion:
|
|
|
|
# https://savannah.gnu.org/patch/index.php?10373
|
|
|
|
# Had to fetch manually to workaround -p0 default.
|
|
|
|
./parallel.patch
|
2024-08-01 13:21:50 +00:00
|
|
|
# Fix `pop_var_context: head of shell_variables not a function context`.
|
|
|
|
./fix-pop-var-context-error.patch
|
2023-01-23 11:55:24 +00:00
|
|
|
];
|
2019-01-08 05:54:31 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
bash: disable `bash-malloc` everywhere, not just on `musl`
TIme to time I bump into pathological behaviour of `bash` memory
allocator. Today's example:
$ time { ls /nix/store/ > /dev/null; }
real 0m0,965s user 0m0,876s sys 0m0,087s
$ time { echo /nix/store/* > /dev/null; }
real 2m18,287s user 2m17,946s sys 0m0,125s
$ time { echo /nix/store/* > /dev/null; }
real 0m1,764s user 0m1,712s sys 0m0,048s
Note how initial `echo` takes alsmot 2 minutes to finish.
Let's rely on system's allocator instead.
After the change initial run is fast again:
$ time { echo /nix/store/* > /dev/null; }
real 0m1,328s user 0m1,264s sys 0m0,063s
2023-08-19 06:53:39 +00:00
|
|
|
# At least on Linux bash memory allocator has pathological performance
|
|
|
|
# in scenarios involving use of larger memory:
|
|
|
|
# https://lists.gnu.org/archive/html/bug-bash/2023-08/msg00052.html
|
|
|
|
# Various distributions default to system allocator. Let's nixpkgs
|
|
|
|
# do the same.
|
|
|
|
"--without-bash-malloc"
|
2019-01-08 05:54:31 +00:00
|
|
|
(if interactive then "--with-installed-readline" else "--disable-readline")
|
2022-12-25 20:06:50 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2019-01-08 05:54:31 +00:00
|
|
|
"bash_cv_job_control_missing=nomissing"
|
|
|
|
"bash_cv_sys_named_pipes=nomissing"
|
|
|
|
"bash_cv_getcwd_malloc=yes"
|
2024-06-24 01:21:31 +00:00
|
|
|
# This check cannot be performed when cross compiling. The "yes"
|
|
|
|
# default is fine for static linking on Linux (weak symbols?) but
|
|
|
|
# not with OpenBSD, when it does clash with the regular `getenv`.
|
|
|
|
"bash_cv_getenv_redef=${if !(with stdenv.hostPlatform; isStatic && isOpenBSD) then "yes" else "no"}"
|
2022-12-25 20:06:50 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isCygwin [
|
2019-01-08 05:54:31 +00:00
|
|
|
"--without-libintl-prefix"
|
|
|
|
"--without-libiconv-prefix"
|
|
|
|
"--with-installed-readline"
|
|
|
|
"bash_cv_dev_stdin=present"
|
|
|
|
"bash_cv_dev_fd=standard"
|
|
|
|
"bash_cv_termcap_lib=libncurses"
|
2022-12-25 20:06:50 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform.libc == "musl") [
|
2019-01-08 05:54:31 +00:00
|
|
|
"--disable-nls"
|
2024-05-14 22:12:16 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isFreeBSD [
|
|
|
|
# /dev/fd is optional on FreeBSD. we need it to work when built on a system
|
|
|
|
# with it and transferred to a system without it! This includes linux cross.
|
|
|
|
"bash_cv_dev_fd=absent"
|
2019-01-08 05:54:31 +00:00
|
|
|
];
|
|
|
|
|
2022-05-06 19:44:36 +00:00
|
|
|
strictDeps = true;
|
2019-01-08 05:54:31 +00:00
|
|
|
# Note: Bison is needed because the patches above modify parse.y.
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2024-05-21 21:50:29 +00:00
|
|
|
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook bison ]
|
2022-12-25 20:06:50 +00:00
|
|
|
++ lib.optional withDocs texinfo
|
2023-09-26 00:57:17 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin stdenv.cc.bintools;
|
2019-01-08 05:54:31 +00:00
|
|
|
|
2022-12-25 20:06:50 +00:00
|
|
|
buildInputs = lib.optional interactive readline;
|
2019-01-08 05:54:31 +00:00
|
|
|
|
2019-01-08 06:16:45 +00:00
|
|
|
enableParallelBuilding = true;
|
2019-01-08 05:54:31 +00:00
|
|
|
|
2022-12-25 20:06:50 +00:00
|
|
|
makeFlags = lib.optionals stdenv.hostPlatform.isCygwin [
|
2019-01-08 05:54:31 +00:00
|
|
|
"LOCAL_LDFLAGS=-Wl,--export-all,--out-implib,libbash.dll.a"
|
|
|
|
"SHOBJ_LIBS=-lbash"
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ util-linux ];
|
2019-01-08 05:54:31 +00:00
|
|
|
doCheck = false; # dependency cycle, needs to be interactive
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s bash "$out/bin/sh"
|
|
|
|
rm -f $out/lib/bash/Makefile.inc
|
|
|
|
'';
|
|
|
|
|
2020-12-21 23:41:27 +00:00
|
|
|
postFixup =
|
|
|
|
if interactive
|
2019-01-08 05:54:31 +00:00
|
|
|
then ''
|
|
|
|
substituteInPlace "$out/bin/bashbug" \
|
2022-05-06 19:44:36 +00:00
|
|
|
--replace '#!/bin/sh' "#!$out/bin/bash"
|
2019-01-08 05:54:31 +00:00
|
|
|
''
|
|
|
|
# most space is taken by locale data
|
|
|
|
else ''
|
|
|
|
rm -rf "$out/share" "$out/bin/bashbug"
|
|
|
|
'';
|
|
|
|
|
2022-12-25 20:06:50 +00:00
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/bash";
|
2023-02-12 12:48:04 +00:00
|
|
|
tests.static = pkgsStatic.bash;
|
2022-12-25 20:06:50 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/bash/";
|
2022-12-25 20:06:50 +00:00
|
|
|
description = "GNU Bourne-Again Shell, the de facto standard shell on Linux" + lib.optionalString interactive " (for interactive use)";
|
2019-01-08 05:54:31 +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 = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2024-09-11 20:05:35 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/333338
|
|
|
|
badPlatforms = [ lib.systems.inspect.patterns.isMinGW ];
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2022-02-12 19:06:05 +00:00
|
|
|
mainProgram = "bash";
|
2019-01-08 05:54:31 +00:00
|
|
|
};
|
|
|
|
}
|