From d1ba7ed4dff1bf4d40bb9112b72319f4fbe519e1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 22 Mar 2018 08:46:40 +0100 Subject: [PATCH] haskell-pure-zlib: enable test suite again https://github.com/NixOS/nixpkgs/issues/37499 has been fixed. Now we just need to jailbreak the package to avoid https://github.com/GaloisInc/pure-zlib/issues/6. --- pkgs/development/haskell-modules/configuration-common.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 48fa8c0e303..4d85a26227e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -344,7 +344,6 @@ self: super: { orgmode-parse = dontCheck super.orgmode-parse; os-release = dontCheck super.os-release; persistent-redis = dontCheck super.persistent-redis; - pure-zlib = dontCheck super.pure-zlib; # https://github.com/NixOS/nixpkgs/issues/37499 pipes-extra = dontCheck super.pipes-extra; pipes-websockets = dontCheck super.pipes-websockets; postgresql-binary = dontCheck super.postgresql-binary; # needs a running postgresql server @@ -1006,4 +1005,7 @@ self: super: { # https://github.com/fpco/inline-c/issues/72 inline-c = dontCheck super.inline-c; + # https://github.com/GaloisInc/pure-zlib/issues/6 + pure-zlib = doJailbreak super.pure-zlib; + }