summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-06-02 10:14:27 +0200
committerPeter Simons <simons@cryp.to>2015-06-02 10:32:31 +0200
commit52829ce24a6fc6389364e46e9bf537d625aaa557 (patch)
tree9f899c7ca5cc93820d0088f1f514aab52cf42e35 /pkgs/development/haskell-modules/configuration-common.nix
parent921b000fa53b1ff747d6adebb85b70db752605c1 (diff)
downloadnixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar.gz
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar.bz2
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar.lz
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar.xz
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.tar.zst
nixpkgs-52829ce24a6fc6389364e46e9bf537d625aaa557.zip
Disable broken builds for Haskell packages gitit and influxdb.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 391c0a02865..9a4979cd58d 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;
+
 }