From 7bf9b4256e1f0d9d0d7f82c0b85a5afc3a002748 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 21 Aug 2018 19:06:45 -0500 Subject: [PATCH] patchelfUnstable: disable tests on Darwin since they've long failed Bit of context/discussion: https://github.com/NixOS/nixpkgs/pull/45449#issuecomment-414844592 --- pkgs/development/tools/misc/patchelf/unstable.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;