summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-05 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-05 04:20:00 -0500
commitb1f5e293cb8a807af4b6bbe7c8baf7715898f994 (patch)
tree0470fd326511938951009cdda9358126f14f828d /pkgs/development/haskell-modules
parent6f730ada4d3ef1377c6f95a68268de6bfef3f4ea (diff)
downloadnixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar.gz
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar.bz2
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar.lz
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar.xz
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.tar.zst
nixpkgs-b1f5e293cb8a807af4b6bbe7c8baf7715898f994.zip
haskellPackages.math-functions: dontCheck on darwin
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index cefc8c0d534..19f7685f786 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -305,6 +305,9 @@ self: super: {
   ldap-client = dontCheck super.ldap-client;
   lensref = dontCheck super.lensref;
   lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
+  math-functions = if pkgs.stdenv.isDarwin
+    then dontCheck super.math-functions # "erf table" test fails on Darwin https://github.com/bos/math-functions/issues/63
+    else super.math-functions;
   matplotlib = dontCheck super.matplotlib;
   memcache = dontCheck super.memcache;
   metrics = dontCheck super.metrics;