about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2017-09-26 19:00:13 +0200
committerDomen Kožar <domen@dev.si>2017-09-26 19:00:27 +0200
commit61fbdb47a69f78998f55207e64122a0798047b5d (patch)
treed0659a34dac2c40138856ce552cb65197e39860e /pkgs/development/haskell-modules/configuration-nix.nix
parent21abe34a2b0fe56b89373f574fc5f47566fd3709 (diff)
downloadnixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar.gz
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar.bz2
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar.lz
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar.xz
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.tar.zst
nixlib-61fbdb47a69f78998f55207e64122a0798047b5d.zip
haskellPackages.foundation: disable tests on darwin
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 6b0eb8c70025..91e95de94af5 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -227,6 +227,12 @@ self: super: builtins.intersectAttrs super {
   # /homeless-shelter. Disabled.
   purescript = dontCheck super.purescript;
 
+  # https://github.com/haskell-foundation/foundation/pull/412
+  foundation =
+    if pkgs.stdenv.isDarwin
+    then dontCheck super.foundation
+    else super.foundation;
+
   # Hardcoded include path
   poppler = overrideCabal super.poppler (drv: {
     postPatch = ''