Skip to content

Commit

Permalink
haskellPackages.foundation: disable tests on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Sep 26, 2017
1 parent 21abe34 commit 61fbdb4
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 61fbdb4

Please sign in to comment.