about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-10-13 00:08:01 +0300
committerGitHub <noreply@github.com>2022-10-13 00:08:01 +0300
commite66d2fd89d40eb37979834c934413635d0841646 (patch)
tree5df3d1319f3bd4153eaf6c7c14138a0cb1042691 /pkgs/shells
parent34493676f6616fdfb85ee76e4b7fe1c1cf0703d1 (diff)
parent7e49471316373c471a3bf4b78c130ebc907ae2d2 (diff)
Merge pull request #194256 from Artturin/treewides2
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/bash/5.1.nix2
-rw-r--r--pkgs/shells/ion/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/bash/5.1.nix b/pkgs/shells/bash/5.1.nix
index 390dab12c9476..0f50c72f5da0d 100644
--- a/pkgs/shells/bash/5.1.nix
+++ b/pkgs/shells/bash/5.1.nix
@@ -86,7 +86,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  makeFlags = optional stdenv.hostPlatform.isCygwin [
+  makeFlags = optionals stdenv.hostPlatform.isCygwin [
     "LOCAL_LDFLAGS=-Wl,--export-all,--out-implib,libbash.dll.a"
     "SHOBJ_LIBS=-lbash"
   ];
diff --git a/pkgs/shells/ion/default.nix b/pkgs/shells/ion/default.nix
index f20c80810a0bc..ce15dbf2d2556 100644
--- a/pkgs/shells/ion/default.nix
+++ b/pkgs/shells/ion/default.nix
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
     maintainers = with maintainers; [ dywedir ];
   };
 
-  buildInputs = lib.optional stdenv.hostPlatform.isDarwin [
+  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
     Security
     libiconv
   ];