about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils/default.nix
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2019-05-13 22:11:14 +0200
committerNiklas Hambüchen <mail@nh2.me>2019-08-14 19:16:43 +0200
commit19b043fe845eeb2432c0b11e1a4b396e153b0eb5 (patch)
tree7e1f64dce0ae6e12ef1c21a70ebf4c70be176052 /pkgs/tools/misc/coreutils/default.nix
parent5524dac2fea0651a0b5f5477fb5795e7cb566873 (diff)
downloadnixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar.gz
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar.bz2
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar.lz
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar.xz
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.tar.zst
nixlib-19b043fe845eeb2432c0b11e1a4b396e153b0eb5.zip
coreutils: Patch benign test case failing with musl.
See https://github.com/NixOS/nixpkgs/pull/61250#issuecomment-491642024

Using upstream patch.
Diffstat (limited to 'pkgs/tools/misc/coreutils/default.nix')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index d9dc1949845f..cbe97dda9e5a 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -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;