Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #47245 from dtzWill/fix/coreutils-8.30-bootstrap

coreutils: try 8.30 again, fix bootstrap tools expression motivating revert before

authored by

xeji and committed by
GitHub
6aa5f2db 867d387a

+5 -4
+2 -2
pkgs/stdenv/linux/make-bootstrap-tools.nix
··· 112 cp -d ${gcc.cc.out}/bin/gcc $out/bin 113 cp -d ${gcc.cc.out}/bin/cpp $out/bin 114 cp -d ${gcc.cc.out}/bin/g++ $out/bin 115 - cp -d ${gcc.cc.lib}/lib*/libgcc_s.so* $out/lib 116 - cp -d ${gcc.cc.lib}/lib*/libstdc++.so* $out/lib 117 cp -rd ${gcc.cc.out}/lib/gcc $out/lib 118 chmod -R u+w $out/lib 119 rm -f $out/lib/gcc/*/*/include*/linux
··· 112 cp -d ${gcc.cc.out}/bin/gcc $out/bin 113 cp -d ${gcc.cc.out}/bin/cpp $out/bin 114 cp -d ${gcc.cc.out}/bin/g++ $out/bin 115 + cp -d ${gcc.cc.lib}/lib/libgcc_s.so* $out/lib 116 + cp -d ${gcc.cc.lib}/lib/libstdc++.so* $out/lib 117 cp -rd ${gcc.cc.out}/lib/gcc $out/lib 118 chmod -R u+w $out/lib 119 rm -f $out/lib/gcc/*/*/include*/linux
+3 -2
pkgs/tools/misc/coreutils/default.nix
··· 16 with lib; 17 18 stdenv.mkDerivation rec { 19 - name = "coreutils-8.29"; 20 21 src = fetchurl { 22 url = "mirror://gnu/coreutils/${name}.tar.xz"; 23 - sha256 = "0plm1zs9il6bb5mk881qvbghq4glc8ybbgakk2lfzb0w64fgml4j"; 24 }; 25 26 patches = optional stdenv.hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch; ··· 32 sed '2i echo Skipping rm deep-2 test && exit 0' -i ./tests/rm/deep-2.sh 33 sed '2i echo Skipping du long-from-unreadable test && exit 0' -i ./tests/du/long-from-unreadable.sh 34 sed '2i echo Skipping chmod setgid test && exit 0' -i ./tests/chmod/setgid.sh 35 substituteInPlace ./tests/install/install-C.sh \ 36 --replace 'mode3=2755' 'mode3=1755' 37 '';
··· 16 with lib; 17 18 stdenv.mkDerivation rec { 19 + name = "coreutils-8.30"; 20 21 src = fetchurl { 22 url = "mirror://gnu/coreutils/${name}.tar.xz"; 23 + sha256 = "0mxhw43d4wpqmvg0l4znk1vm10fy92biyh90lzdnqjcic2lb6cg8"; 24 }; 25 26 patches = optional stdenv.hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch; ··· 32 sed '2i echo Skipping rm deep-2 test && exit 0' -i ./tests/rm/deep-2.sh 33 sed '2i echo Skipping du long-from-unreadable test && exit 0' -i ./tests/du/long-from-unreadable.sh 34 sed '2i echo Skipping chmod setgid test && exit 0' -i ./tests/chmod/setgid.sh 35 + sed '2i print "Skipping env -S test"; exit 0;' -i ./tests/misc/env-S.pl 36 substituteInPlace ./tests/install/install-C.sh \ 37 --replace 'mode3=2755' 'mode3=1755' 38 '';