summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-07-17 18:01:41 +0200
committerPeter Simons <simons@cryp.to>2015-07-19 10:31:13 +0200
commit5e4f1adc8af01215535e47fa8c5c42fd98661b01 (patch)
tree55e7b0254065b4505f97b1063568f2e35b025f0b /pkgs/development/haskell-modules
parent317dd06aa438fb2e49a578a7bbefc5ed677cdc13 (diff)
downloadnixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar.gz
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar.bz2
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar.lz
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar.xz
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.tar.zst
nixlib-5e4f1adc8af01215535e47fa8c5c42fd98661b01.zip
haskell-hwsl2: fix build by disabling the test suite
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a59219786c98..837fa79859d4 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -619,10 +619,6 @@ self: super: {
   # https://github.com/jwiegley/simple-conduit/issues/2
   simple-conduit = markBroken super.simple-conduit;
 
-  # https://github.com/srijs/hwsl2/issues/1
-  hwsl2 = markBroken super.hwsl2;
-  hwsl2-reducers = dontDistribute super.hwsl2-reducers;
-
   # https://code.google.com/p/linux-music-player/issues/detail?id=1
   mp = markBroken super.mp;
 
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index de0fdacb3f9d..ca7c0f56bc17 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -268,4 +268,8 @@ self: super: {
   # Inexplicable haddock failure
   # https://github.com/gregwebs/aeson-applicative/issues/2
   aeson-applicative = dontHaddock super.aeson-applicative;
+
+  # GHC 7.10.1 is affected by https://github.com/srijs/hwsl2/issues/1.
+  hwsl2 = dontCheck super.hwsl2;
+
 }