coreutils: Patch benign test case failing with musl.

See https://github.com/NixOS/nixpkgs/pull/61250#issuecomment-491642024

Using upstream patch.
This commit is contained in:
Niklas Hambüchen
2019-08-14 19:16:43 +02:00
parent 5524dac2fe
commit 19b043fe84
2 changed files with 55 additions and 0 deletions
+3
View File
@@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
};
patches = optional stdenv.hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch
# Fix failing test with musl. See https://lists.gnu.org/r/coreutils/2019-05/msg00031.html
# To be removed in coreutils-8.32.
++ optional stdenv.hostPlatform.isMusl ./avoid-false-positive-in-date-debug-test.patch
# Fix compilation in musl-cross environments. To be removed in coreutils-8.32.
++ optional stdenv.hostPlatform.isMusl ./coreutils-8.31-musl-cross.patch;