Skip to content

Commit

Permalink
haskellPackages.foundation: disable tests on darwin
Browse files Browse the repository at this point in the history
(cherry picked from commit 61fbdb4)
  • Loading branch information
domenkozar authored and LnL7 committed Mar 7, 2018
1 parent 30a782c commit df69194
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/haskell-modules/configuration-nix.nix
Expand Up @@ -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 = ''
Expand Down

0 comments on commit df69194

Please sign in to comment.