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