From 2833bd5f7cc613c5d5acbc0f30cbcbc8bb1981ef Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Fri, 25 Feb 2022 23:30:08 +0100 Subject: [PATCH] haskellPackages.paths: Jailbreak --- 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 a4d1629f0d0c..e9aa8af9cea3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2288,6 +2288,9 @@ self: super: { glirc = assert super.irc-core.version == "2.10"; doJailbreak super.glirc; hookup = assert super.irc-core.version == "2.10"; doJailbreak super.hookup; + # 2022-02-25: Unmaintained and to strict upper bounds + paths = doJailbreak super.paths; + # Too strict bounds on chell: https://github.com/fpco/haskell-filesystem/issues/24 system-fileio = doJailbreak super.system-fileio; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super