From a8d69a7153951dd85fa163699e329fe07b6bd608 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 6 Aug 2015 13:47:01 -0700 Subject: [PATCH] disable haskell-mockery check on Darwin --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ed23b190ec6..40428c94797 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -206,6 +206,9 @@ self: super: { # the system-fileio tests use canonicalizePath, which fails in the sandbox system-fileio = if pkgs.stdenv.isDarwin then dontCheck super.system-fileio else super.system-fileio; + # same as above + mockery = if pkgs.stdenv.isDarwin then dontCheck super.mockery else super.mockery; + # Prevents needing to add security_tool as a build tool to all of x509-system's # dependencies. x509-system = if pkgs.stdenv.isDarwin && !pkgs.stdenv.cc.nativeLibc