From 7ce799f0f8a3682f92060a308a6a0c314957a4d8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 Feb 2015 12:47:26 +0100 Subject: [PATCH] haskell-hjsonschema doesn't pass the Haddock stage. --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 92448b60a96..c8b2aee2f38 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -59,7 +59,7 @@ self: super: { configureFlags = "--extra-include-dirs=${pkgs.zookeeper_mt}/include/zookeeper"; doCheck = false; }); - + haskakafka = overrideCabal super.haskakafka (drv: { preConfigure = "sed -i -e /extra-lib-dirs/d -e /include-dirs/d haskakafka.cabal"; configureFlags = "--extra-include-dirs=${pkgs.rdkafka}/include/librdkafka"; @@ -422,7 +422,8 @@ self: super: { duplo = dontCheck super.duplo; # https://github.com/seagreen/hjsonschema/issues/4 - hjsonschema = dontCheck super.hjsonschema; + # https://github.com/seagreen/hjsonschema/issues/5 + hjsonschema = dontHaddock (dontCheck super.hjsonschema); # Nix-specific workaround xmonad = appendPatch super.xmonad ./xmonad-nix.patch;