From 1545d241b617d4bd2de654f1984abbce48a1d9b1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 20 Jul 2016 22:06:01 +0200 Subject: [PATCH] haskell-semigroups: fix build with old compilers --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 39652da5a5d2..6618e3126db1 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -97,6 +97,6 @@ self: super: { conduit = addBuildDepend super.conduit self.void; # Needs additional inputs on pre 7.10.x compilers. - semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers transformers]); + semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]); }