From a0ed90b345508f7ee7b0a8ed51ceb80183bc3def Mon Sep 17 00:00:00 2001 From: Teo Camarasu Date: Wed, 2 Mar 2022 10:12:22 +0000 Subject: [PATCH] haskellPackages.ekg-core: fix build by relaxing bounds --- 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 46015ecbbb47..af210ad91413 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2333,4 +2333,7 @@ self: super: { # Too strict bounds on chell: https://github.com/fpco/haskell-filesystem/issues/24 system-fileio = doJailbreak super.system-fileio; + # Bounds too strict on base and ghc-prim: https://github.com/tibbe/ekg-core/pull/43 (merged); waiting on hackage release + ekg-core = assert super.ekg-core.version == "0.1.1.7"; doJailbreak super.ekg-core; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super