summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorManuel Bärenz <programming@manuelbaerenz.de>2020-12-05 17:37:09 +0100
committerPeter Simons <simons@cryp.to>2020-12-18 20:27:53 +0100
commita0aa0ce42d1978dc73824316ee772641abf8fd3e (patch)
treec27f971a79ce2937078b352b78ce3095e43a949c /pkgs/development/haskell-modules/configuration-common.nix
parent06279ee84f5dd629f9af6362a542aa51e3f88f37 (diff)
downloadnixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar.gz
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar.bz2
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar.lz
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar.xz
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.tar.zst
nixpkgs-a0aa0ce42d1978dc73824316ee772641abf8fd3e.zip
haskellPackages.essence-of-live-coding: Fix dependency
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 99cb6223269..d5abcb723b5 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1518,4 +1518,8 @@ self: super: {
   # 2020-11-27: cxx-options is broken in Cabal 3.2.0.0
   hercules-ci-agent = addSetupDepend super.hercules-ci-agent self.Cabal_3_2_1_0;
 
+  # 2020-12-05: http-client is fixed on too old version
+  essence-of-live-coding-warp = super.essence-of-live-coding-warp.override {
+    http-client = self.http-client_0_7_3;
+  };
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super