summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-23 14:30:10 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:11 +0200
commit5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07 (patch)
treeac2e393d94d83c09b6d3539998632d689b83cce9 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parent074581c1a4f0c3d042a6d21211d70d020711a8d8 (diff)
downloadnixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar.gz
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar.bz2
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar.lz
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar.xz
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.tar.zst
nixpkgs-5f9645ef2ee26da85f4c9b3c1d88fdb6a1c0ac07.zip
haskell-semigroups: fix build with ghc-7.10.x and earlier
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix2
1 files changed, 1 insertions, 1 deletions
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 7375072647d..9e3f16a47a3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -196,7 +196,7 @@ self: super: {
   lens = addBuildDepend super.lens self.generic-deriving;
   optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
   QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
-  semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]);
+  semigroups = addBuildDepends (dontCheck super.semigroups) (with self; [hashable tagged text unordered-containers]);
   texmath = addBuildDepend super.texmath self.network-uri;
   yesod-auth-oauth2 = overrideCabal super.yesod-auth-oauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.load-env self.yesod ]; });
   # cereal must have `fail` in pre-ghc-8.0.x versions