summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-08-21 19:06:45 -0500
committerWill Dietz <w@wdtz.org>2018-08-21 19:06:45 -0500
commit7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748 (patch)
tree1e9f926bf9ad6022e49a6c5dcec25ab6dd2ee229
parente12871912ec630597eecd4983f6f33c444e836b4 (diff)
downloadnixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar.gz
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar.bz2
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar.lz
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar.xz
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.tar.zst
nixlib-7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748.zip
patchelfUnstable: disable tests on Darwin since they've long failed
Bit of context/discussion:
https://github.com/NixOS/nixpkgs/pull/45449#issuecomment-414844592
-rw-r--r--pkgs/development/tools/misc/patchelf/unstable.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index 8f4194d8973b..0c5ec6404260 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook ];
   buildInputs = [ ];
 
-  doCheck = true;
+  doCheck = !stdenv.isDarwin;
 
   meta = {
     homepage = https://nixos.org/patchelf.html;