From d300943ba8c13da7319379169d222f80e7fc7792 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 24 Apr 2015 17:51:54 +0200 Subject: [PATCH] haskell-cgi: fix build with GHC 7.8.x --- pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 0aff4740fc9..bba72198e60 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -129,4 +129,7 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; + # needs mtl-compat to build with mtl 2.1.x + cgi = addBuildDepend super.cgi self.mtl-compat; + }