summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-23 14:18:44 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:10 +0200
commit1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1 (patch)
tree1cbfdaa4cbcfa2592489dec61f399b789a2f5410 /pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
parent92bc6a7bbc30af2a722d8f207275dd07c59c5bfb (diff)
downloadnixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar.gz
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar.bz2
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar.lz
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar.xz
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.tar.zst
nixpkgs-1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1.zip
haskell-distributive: fix build on GHC versions older than 8.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index f82bcb4e646..31e56db9223 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -146,7 +146,7 @@ self: super: {
   # Needs additional inputs on old compilers.
   semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers]);
   lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
-  distributive = addBuildDepend super.distributive self.semigroups;
+  distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
   QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
   void = addBuildDepends super.void (with self; [hashable semigroups]);
   optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;