about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorDrew Hess <src@drewhess.com>2018-01-09 18:06:25 -0800
committerDrew Hess <src@drewhess.com>2018-01-09 18:06:25 -0800
commitc05378b730bdac2c163777c4f50a2bde07f786bb (patch)
tree0cbc4903af342e1b4c3338e9d68869a346c77262 /pkgs/development/haskell-modules
parentad0e0f27e3bb253ef7d84e0fed4c0d780a1bea23 (diff)
downloadnixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar.gz
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar.bz2
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar.lz
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar.xz
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.tar.zst
nixlib-c05378b730bdac2c163777c4f50a2bde07f786bb.zip
haskell-modules: disable hashable tests on armv7l-linux.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 191a1f9570fa..55fc2968a931 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -928,6 +928,7 @@ self: super: {
 
   # armv7l fixes.
   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
 
   # Tries to read a file it is not allowed to in the test suite
   load-env = dontCheck super.load-env;