summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2018-03-25 15:50:26 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2018-03-25 15:54:09 +0200
commitbe3449200d8e6460cfd9d989c9843db43205c193 (patch)
treea1d44699dc65a9dce1b65ebef741c4f902dc908d /pkgs/development/haskell-modules
parentedb0d0948079a05af79d0ce853055a8f6e760821 (diff)
downloadnixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar.gz
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar.bz2
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar.lz
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar.xz
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.tar.zst
nixlib-be3449200d8e6460cfd9d989c9843db43205c193.zip
haskellPackages.shell-conduit: fix build
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 47768b948ffa..4db43dac1436 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -112,7 +112,13 @@ self: super: {
     # the tests for shell-conduit on Darwin illegitimatey assume non-GNU echo
     # see: https://github.com/psibi/shell-conduit/issues/12
     doCheck = !pkgs.stdenv.isDarwin;
-  }));
+  })).overrideScope (self: super: {
+    # shell-conduit doesn't build with conduit 1.3
+    # see https://github.com/psibi/shell-conduit/issues/15
+    conduit = self.conduit_1_2_13_1;
+    conduit-extra = self.conduit-extra_1_2_3_2;
+    resourcet = self.resourcet_1_1_11;
+  });
 
   # https://github.com/froozen/kademlia/issues/2
   kademlia = dontCheck super.kademlia;