bash: minor reformating

- Replace `lib.optional` with `lib.optionals` when dealing with lists
- Remove `with lib;` from `meta`
This commit is contained in:
Pol Dellaiera
2025-11-09 12:24:54 +01:00
parent 151aa96218
commit e6de6e6025
+6 -6
View File
@@ -49,7 +49,7 @@ lib.warnIf (withDocs != null)
# 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";
++ lib.optionals (stdenv.hostPlatform.libc == "bionic") [ "fortify" ];
outputs = [
"out"
@@ -130,9 +130,9 @@ lib.warnIf (withDocs != null)
updateAutotoolsGnuConfigScriptsHook
bison
]
++ lib.optional stdenv.hostPlatform.isDarwin stdenv.cc.bintools;
++ lib.optionals stdenv.hostPlatform.isDarwin [ stdenv.cc.bintools ];
buildInputs = lib.optional interactive readline;
buildInputs = lib.optionals interactive [ readline ];
enableParallelBuilding = true;
@@ -255,7 +255,7 @@ lib.warnIf (withDocs != null)
});
};
meta = with lib; {
meta = {
homepage = "https://www.gnu.org/software/bash/";
description =
"GNU Bourne-Again Shell, the de facto standard shell on Linux"
@@ -270,8 +270,8 @@ lib.warnIf (withDocs != null)
interactive use. In addition, most sh scripts can be run by
Bash without modification.
'';
license = licenses.gpl3Plus;
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.all;
# https://github.com/NixOS/nixpkgs/issues/333338
badPlatforms = [ lib.systems.inspect.patterns.isMinGW ];
maintainers = with lib.maintainers; [ infinisil ];