Merge pull request #299945 from helsinki-systems/upd/coreutils

[staging] coreutils: 9.4 -> 9.5

authored by Thomas Gerbet and committed by GitHub cea802fc 4eae5f9e

+8 -2
+8 -2
pkgs/tools/misc/coreutils/default.nix
··· 32 32 in 33 33 stdenv.mkDerivation rec { 34 34 pname = "coreutils" + (optionalString (!minimal) "-full"); 35 - version = "9.4"; 35 + version = "9.5"; 36 36 37 37 src = fetchurl { 38 38 url = "mirror://gnu/coreutils/coreutils-${version}.tar.xz"; 39 - hash = "sha256-6mE6TPRGEjJukXIBu7zfvTAd4h/8O1m25cB+BAsnXlI="; 39 + hash = "sha256-zTKO3qyS9qZl3p8yPJO3Eq8YWLwuDYjz9xAEaUcKG4o="; 40 40 }; 41 41 42 42 postPatch = '' ··· 45 45 sed '2i echo Skipping du threshold test && exit 77' -i ./tests/du/threshold.sh 46 46 sed '2i echo Skipping cp reflink-auto test && exit 77' -i ./tests/cp/reflink-auto.sh 47 47 sed '2i echo Skipping cp sparse test && exit 77' -i ./tests/cp/sparse.sh 48 + sed '2i echo Skipping env test && exit 77' -i ./tests/env/env.sh 48 49 sed '2i echo Skipping rm deep-2 test && exit 77' -i ./tests/rm/deep-2.sh 49 50 sed '2i echo Skipping du long-from-unreadable test && exit 77' -i ./tests/du/long-from-unreadable.sh 50 51 ··· 66 67 sed '2i echo Skipping chgrp && exit 77' -i "$f" 67 68 done 68 69 for f in gnulib-tests/{test-chown.c,test-fchownat.c,test-lchown.c}; do 70 + echo "int main() { return 77; }" > "$f" 71 + done 72 + 73 + # We don't have localtime in the sandbox 74 + for f in gnulib-tests/{test-localtime_r.c,test-localtime_r-mt.c}; do 69 75 echo "int main() { return 77; }" > "$f" 70 76 done 71 77