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 authored and alexfmpe committed Feb 14, 2018
1 parent ebb270d commit a6c7f40
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/haskell-modules/configuration-nix.nix
Original file line number Diff line number Diff line change
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 a6c7f40

Please sign in to comment.