From 0fdbed7f53cff6bd932f2f0d266b04c4c58bdb25 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Oct 2018 12:04:12 +0200 Subject: [PATCH] haskell-base-compat-batteries: fix build with ghc-8.0.x --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 e0d2753a584..43f769ff6fd 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; + }