summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-09-30 22:58:33 +0300
committerGitHub <noreply@github.com>2023-09-30 22:58:33 +0300
commitb6e0319318db10525d950807a135b0d8d39f7098 (patch)
treeb6aec23033a1e0f5f70ab8b765b1148547c93bbc /pkgs/shells/bash
parent5b2aff1de022750db8908cbbe1ce677cd31c8722 (diff)
parent6c73dc674663f21971d4aaf83cf18e906d3e57ca (diff)
downloadnixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar.gz
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar.bz2
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar.lz
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar.xz
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.tar.zst
nixpkgs-b6e0319318db10525d950807a135b0d8d39f7098.zip
Merge pull request #257358 from Artturin/bashunnecessaryexplici
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/5.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix
index 3beb54b908e..3c4fb83e3e4 100644
--- a/pkgs/shells/bash/5.nix
+++ b/pkgs/shells/bash/5.nix
@@ -2,7 +2,6 @@
 , stdenv
 , buildPackages
 , fetchurl
-, binutils
 , bison
 , util-linux
 
@@ -95,7 +94,7 @@ stdenv.mkDerivation rec {
   depsBuildBuild = [ buildPackages.stdenv.cc ];
   nativeBuildInputs = [ bison ]
     ++ lib.optional withDocs texinfo
-    ++ lib.optional stdenv.hostPlatform.isDarwin binutils;
+    ++ lib.optional stdenv.hostPlatform.isDarwin stdenv.cc.bintools;
 
   buildInputs = lib.optional interactive readline;