1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-modules: disable happy tests on armv7l-linux.

This commit is contained in:
Drew Hess 2018-01-03 16:03:26 -08:00
parent 260749cf5d
commit 05824e66a1
No known key found for this signature in database
GPG key ID: DEDAB57E001BD839

View file

@ -1023,4 +1023,6 @@ self: super: {
# https://github.com/Twinside/Juicy.Pixels/issues/149
JuicyPixels = dontHaddock super.JuicyPixels;
# armv7l fixes.
happy = if pkgs.stdenv.isArm then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
}