summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-03-28 04:03:18 +0100
committerPeter Simons <simons@cryp.to>2020-04-03 22:00:26 +0200
commitf447e4cf6accb57821aeda47de9da6b17a009222 (patch)
treeb7ba2417288d1e15fbc56cf5955a9ef7c91349b2 /pkgs/development/haskell-modules/configuration-common.nix
parent03d4d258307ad2a465d81cba42acbfdc318d5ed4 (diff)
downloadnixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar.gz
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar.bz2
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar.lz
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar.xz
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.tar.zst
nixpkgs-f447e4cf6accb57821aeda47de9da6b17a009222.zip
haskellPackages.hspec-core: Disable tests on i686.
The tests have x86_64 results hardcoded, see
https://github.com/hspec/hspec/issues/431.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-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 afa3c533894..da2421d05ab 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -326,6 +326,7 @@ self: super: {
   hs2048 = dontCheck super.hs2048;
   hsbencher = dontCheck super.hsbencher;
   hsexif = dontCheck super.hsexif;
+  hspec-core = if pkgs.stdenv.isi686 then dontCheck super.hspec-core else super.hspec-core; # tests rely on `Int` being 64-bit; https://github.com/hspec/hspec/issues/431
   hspec-server = dontCheck super.hspec-server;
   HTF = dontCheck super.HTF;
   htsn = dontCheck super.htsn;