coreutils: 9.3 -> 9.4 (#264215)

Co-authored-by: Artturi <Artturin@artturin.com>

authored by Sergei Trofimovich Artturi and committed by GitHub c2c20bb2 61c7d691

+4 -6
+4 -6
pkgs/tools/misc/coreutils/default.nix
··· 32 32 in 33 33 stdenv.mkDerivation rec { 34 34 pname = "coreutils" + (optionalString (!minimal) "-full"); 35 - version = "9.3"; 35 + version = "9.4"; 36 36 37 37 src = fetchurl { 38 38 url = "mirror://gnu/coreutils/coreutils-${version}.tar.xz"; 39 - hash = "sha256-rbz8/omSNbceh2jc8HzVMlILf1T5qAZIQ/jRmakEu6o="; 39 + hash = "sha256-6mE6TPRGEjJukXIBu7zfvTAd4h/8O1m25cB+BAsnXlI="; 40 40 }; 41 41 42 42 postPatch = '' ··· 50 50 51 51 # Some target platforms, especially when building inside a container have 52 52 # issues with the inotify test. 53 - sed '2i echo Skipping tail inotify dir recreate test && exit 77' -i ./tests/tail-2/inotify-dir-recreate.sh 53 + sed '2i echo Skipping tail inotify dir recreate test && exit 77' -i ./tests/tail/inotify-dir-recreate.sh 54 54 55 55 # sandbox does not allow setgid 56 56 sed '2i echo Skipping chmod setgid test && exit 77' -i ./tests/chmod/setgid.sh ··· 77 77 echo "int main() { return 77; }" > gnulib-tests/test-getlogin.c 78 78 '' 79 79 ])) + (optionalString stdenv.isAarch64 '' 80 - sed '2i print "Skipping tail assert test"; exit 77' -i ./tests/tail-2/assert.sh 81 - 82 80 # Sometimes fails: https://github.com/NixOS/nixpkgs/pull/143097#issuecomment-954462584 83 - sed '2i echo Skipping cut huge range test && exit 77' -i ./tests/misc/cut-huge-range.sh 81 + sed '2i echo Skipping cut huge range test && exit 77' -i ./tests/cut/cut-huge-range.sh 84 82 ''); 85 83 86 84 outputs = [ "out" "info" ];