From 6bea2d503ae31a44cdddda226c0fa88ca8d7df07 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 30 Mar 2015 03:48:48 +0200 Subject: [PATCH] haskell-nats: fix build on pre 7.10.x compilers --- 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 5257717673a..5d84dca47e8 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -128,4 +128,7 @@ self: super: { # Fix evaluation in GHC >=7.8: https://github.com/lambdabot/lambdabot/issues/116 lambdabot = appendPatch super.lambdabot ./lambdabot-fix-ghc78.patch; + # Needs hashable on pre 7.10.x compilers. + nats = addBuildDepend super.nats self.hashable; + }