From 57874b620e4f76509936fab269e23261a3508e26 Mon Sep 17 00:00:00 2001 From: Samuel Evans-Powell Date: Thu, 19 Mar 2020 09:20:50 +0800 Subject: [PATCH] prometheus: no need to jailbreak - prometheus no longer needs to be jailbroken, removing 'doJailbreak'. Jailbreaking was added in https://github.com/NixOS/nixpkgs/pull/70956 to overcome issue https://github.com/bitnomial/prometheus/issues/34. - This issue has since been fixed and so jailbreaking is no longer necessary. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1dae1dab133d..13566f3afd43 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1250,10 +1250,6 @@ self: super: { ''; }); - # Version bounds for http-client are too strict: - # https://github.com/bitnomial/prometheus/issues/34 - prometheus = doJailbreak super.prometheus; - # The doctests in universum-1.5.0 are broken. The doctests in versions of universum after # 1.5.0 should be fixed, so this should be able to be removed. universum = dontCheck super.universum;