From 52829ce24a6fc6389364e46e9bf537d625aaa557 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 2 Jun 2015 10:14:27 +0200 Subject: [PATCH] Disable broken builds for Haskell packages gitit and influxdb. --- pkgs/development/haskell-modules/configuration-common.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 391c0a02865f..9a4979cd58d7 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -402,7 +402,6 @@ self: super: { http-client-openssl = dontCheck super.http-client-openssl; http-client-tls = dontCheck super.http-client-tls; ihaskell = dontCheck super.ihaskell; - influxdb = dontCheck (dontJailbreak super.influxdb); itanium-abi = dontCheck super.itanium-abi; katt = dontCheck super.katt; language-slice = dontCheck super.language-slice; @@ -834,4 +833,11 @@ self: super: { # https://github.com/DanielG/cabal-helper/issues/2 cabal-helper = overrideCabal super.cabal-helper (drv: { preCheck = "export HOME=$TMPDIR"; }); + # https://github.com/jgm/gitit/issues/494 + gitit = markBroken super.gitit; + + # https://github.com/maoe/influxdb-haskell/issues/26 + influxdb = markBroken (dontCheck super.influxdb); + snaplet-influxdb = dontDistribute super.snaplet-influxdb; + }