Skip to content

Commit df69194

Browse files
domenkozarLnL7
authored andcommittedMar 7, 2018
haskellPackages.foundation: disable tests on darwin
(cherry picked from commit 61fbdb4)
1 parent 30a782c commit df69194

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎pkgs/development/haskell-modules/configuration-nix.nix

+6
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,12 @@ self: super: builtins.intersectAttrs super {
227227
# /homeless-shelter. Disabled.
228228
purescript = dontCheck super.purescript;
229229

230+
# https://github.com/haskell-foundation/foundation/pull/412
231+
foundation =
232+
if pkgs.stdenv.isDarwin
233+
then dontCheck super.foundation
234+
else super.foundation;
235+
230236
# Hardcoded include path
231237
poppler = overrideCabal super.poppler (drv: {
232238
postPatch = ''

0 commit comments

Comments
 (0)
Please sign in to comment.