mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #33694 from dhess/more-ghc-armv7l-fixes
haskell-modules: more disabled tests for armv7l-linux.
This commit is contained in:
commit
aa2d7eeb23
@ -929,6 +929,9 @@ self: super: {
|
|||||||
# armv7l fixes.
|
# armv7l fixes.
|
||||||
happy = if pkgs.stdenv.isArm then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
|
happy = if pkgs.stdenv.isArm then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
|
||||||
hashable = if pkgs.stdenv.isArm then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95
|
hashable = if pkgs.stdenv.isArm then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95
|
||||||
|
servant-docs = if pkgs.stdenv.isArm then dontCheck super.servant-docs else super.servant-docs;
|
||||||
|
servant-swagger = if pkgs.stdenv.isArm then dontCheck super.servant-swagger else super.servant-swagger;
|
||||||
|
swagger2 = if pkgs.stdenv.isArm then dontCheck super.swagger2 else super.swagger2;
|
||||||
|
|
||||||
# Tries to read a file it is not allowed to in the test suite
|
# Tries to read a file it is not allowed to in the test suite
|
||||||
load-env = dontCheck super.load-env;
|
load-env = dontCheck super.load-env;
|
||||||
|
Loading…
Reference in New Issue
Block a user