Skip to content

Commit

Permalink
freshBootstrapTools.bootstrapTools: fix by using bashNonInteractive
Browse files Browse the repository at this point in the history
  • Loading branch information
paparodeo authored and vcunat committed Feb 18, 2025
1 parent 746c76a commit bd4cd0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/stdenv/darwin/stdenv-bootstrap-tools.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
lib,
stdenv,
bash,
bashNonInteractive,
bzip2,
coreutils,
cpio,
Expand Down Expand Up @@ -131,7 +131,7 @@ stdenv.mkDerivation (finalAttrs: {
cp ${getBin coreutils_}/bin/* $out/bin
(cd $out/bin && rm vdir dir sha*sum pinky factor pathchk runcon shuf who whoami shred users)
cp -d ${getBin bash}/bin/{ba,}sh $out/bin
cp -d ${getBin bashNonInteractive}/bin/{ba,}sh $out/bin
cp -d ${getBin diffutils}/bin/* $out/bin
cp ${getBin findutils}/bin/{find,xargs} $out/bin
cp -d ${getBin gawk}/bin/{g,}awk $out/bin
Expand Down Expand Up @@ -192,7 +192,7 @@ stdenv.mkDerivation (finalAttrs: {
# tools needed to unpack bootstrap archive
mkdir -p unpack/bin unpack/lib
cp -d ${getBin bash}/bin/{bash,sh} unpack/bin
cp -d ${getBin bashNonInteractive}/bin/{ba,}sh unpack/bin
cp ${getBin coreutils_}/bin/mkdir unpack/bin
cp ${getBin gnutar}/bin/tar unpack/bin
cp ${getBin xz}/bin/xz unpack/bin
Expand Down

0 comments on commit bd4cd0a

Please sign in to comment.