about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-09 16:22:34 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-06-10 15:07:02 -0400
commite544e4f564f69c89fc38fbd161648084b4f57c4f (patch)
tree7b4089c0cd3338b8f753ef0f2cd32130074da9b6
parent5a216cd7ed6e6c6e3694e1708ad3d499cb0b9d99 (diff)
downloadnixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar.gz
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar.bz2
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar.lz
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar.xz
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.tar.zst
nixlib-e544e4f564f69c89fc38fbd161648084b4f57c4f.zip
configuration-common.nix: fix incorrect override
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ad07da83c4e3..425b48f9ad6a 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -348,7 +348,7 @@ self: super: {
   itanium-abi = dontCheck super.itanium-abi;
   katt = dontCheck super.katt;
   language-slice = dontCheck super.language-slice;
-  language-nix = overrideCabal super.language-nix (drv: { broken = pkgs.stdenv.isLinux && pkgs.stdenv.isi686; }); # Tests crash on 32-bit linux; see https://github.com/peti/language-nix/issues/4
+  language-nix = if pkgs.stdenv.isi686 then dontCheck super.language-nix else super.language-nix;
   ldap-client = dontCheck super.ldap-client;
   lensref = dontCheck super.lensref;
   lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25