about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorKranium Gikos Mendoza <kranium@gikos.net>2021-08-13 00:59:54 +1000
committerKranium Gikos Mendoza <kranium@gikos.net>2021-08-17 16:36:22 +1000
commit17a9d5926cefda015270cf4afb94df43d4672b56 (patch)
treea31b16ad212c95d346fa8368c1ce583e57a583ff /pkgs/tools/misc/coreutils
parent6ef4f522d63f22b40004319778761040d3197390 (diff)
coreutils: disable tests on armv7l
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 0b2b03ba8db96..f22a7268fbc93 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -112,7 +112,8 @@ stdenv.mkDerivation (rec {
   # and {Open,Free}BSD.
   # With non-standard storeDir: https://github.com/NixOS/nix/issues/512
   doCheck = stdenv.hostPlatform == stdenv.buildPlatform
-    && (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.isMusl);
+    && (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.isMusl)
+    && !stdenv.isAarch32;
 
   # Prevents attempts of running 'help2man' on cross-built binaries.
   PERL = if stdenv.hostPlatform == stdenv.buildPlatform then null else "missing";