From 5b220ae92daaee10806ad6455becb470d26b1296 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 15 Jan 2021 20:47:46 +0100 Subject: [PATCH] haskell-http-client-restricted: jailbreak to fix the build with older versions of http-client --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ebb0c9bd2b3..8025c521ce8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1567,4 +1567,7 @@ self: super: { # Allow building with recent versions of tasty. lukko = doJailbreak super.lukko; + # Allow building with older versions of http-client. + http-client-restricted = doJailbreak super.http-client-restricted; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super