summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-01-12 02:02:32 -0600
committerWill Dietz <w@wdtz.org>2018-02-13 09:44:41 -0600
commitf969923bacf2d7d34dd86bcd7f232b899720a165 (patch)
tree1a6b4f96e705539dd3f5b53088cfad7607725592 /pkgs/tools
parent8ad9400a6c075e0933686815b25e431d597ccaf5 (diff)
downloadnixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar.gz
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar.bz2
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar.lz
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar.xz
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.tar.zst
nixlib-f969923bacf2d7d34dd86bcd7f232b899720a165.zip
gnupatch: disable tests on musl :(
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/gnupatch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix
index dfdb25438cfe..7eda640b6c72 100644
--- a/pkgs/tools/text/gnupatch/default.nix
+++ b/pkgs/tools/text/gnupatch/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     "ac_cv_func_strnlen_working=yes"
   ];
 
-  doCheck = true; # not cross;
+  doCheck = hostPlatform.libc != "musl"; # not cross;
 
   meta = {
     description = "GNU Patch, a program to apply differences to files";