summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-10-19 12:04:12 +0200
committerPeter Simons <simons@cryp.to>2018-10-19 14:44:23 +0200
commit0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25 (patch)
tree8b40174fc9e1124f77df4b413b206865bb5a9812
parent488e41e8df72f9a39d9fd8aec09c550379545377 (diff)
downloadnixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar.gz
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar.bz2
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar.lz
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar.xz
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.tar.zst
nixlib-0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25.zip
haskell-base-compat-batteries: fix build with ghc-8.0.x
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index e0d2753a5849..43f769ff6fd5 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -85,4 +85,7 @@ self: super: {
   # GHC 8.0 doesn't have semigroups included by default
   ListLike = addBuildDepend super.ListLike self.semigroups;
 
+  # Add missing build depedency for this compiler.
+  base-compat-batteries = addBuildDepend super.base-compat-batteries self.bifunctors;
+
 }