summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-10-13 20:00:26 +0200
committerPeter Simons <simons@cryp.to>2015-10-15 10:04:14 +0200
commita0376d4666c9933428c9511076ed468129183973 (patch)
tree639afc7438fb02a140e3eac66fb0c57825ea259a /pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
parenta7bddbd4caa1b5b95079a4b6aee96ccfe2331a93 (diff)
downloadnixlib-a0376d4666c9933428c9511076ed468129183973.tar
nixlib-a0376d4666c9933428c9511076ed468129183973.tar.gz
nixlib-a0376d4666c9933428c9511076ed468129183973.tar.bz2
nixlib-a0376d4666c9933428c9511076ed468129183973.tar.lz
nixlib-a0376d4666c9933428c9511076ed468129183973.tar.xz
nixlib-a0376d4666c9933428c9511076ed468129183973.tar.zst
nixlib-a0376d4666c9933428c9511076ed468129183973.zip
haskell-conduit: fix build with pre-7.10.x versions of GHC
Thanks to @bennofs for finding this issue!
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
index bfb9ecdb5ba3..06fedc6a1c4d 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
@@ -91,4 +91,7 @@ self: super: {
   # Needs hashable on pre 7.10.x compilers.
   nats = addBuildDepend super.nats self.hashable;
 
+  # Needs void on pre 7.10.x compilers.
+  conduit = addBuildDepend super.conduit self.void;
+
 }