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-01-23 17:36:29 +0100
committerPeter Simons <simons@cryp.to>2015-01-23 18:55:16 +0100
commit5f4e8dc810585726743b5a77f516c566562b970b (patch)
tree50ec3c535022093c5eb93943236f15d1420c9040 /pkgs/development/haskell-modules/configuration-common.nix
parent5776d0819d527eb90a1f7ca58389cf610e42c6e0 (diff)
downloadnixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar.gz
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar.bz2
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar.lz
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar.xz
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.tar.zst
nixpkgs-5f4e8dc810585726743b5a77f516c566562b970b.zip
haskell-hxt: fix the build by disabling the Haddock phase
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 3c8c1c1bc55..818fc1df041 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -57,13 +57,11 @@ self: super: {
   # https://github.com/haskell/time/issues/23
   time_1_5_0_1 = dontCheck super.time_1_5_0_1;
 
-  # Doesn't accept modern versions of hashtable.
-  Agda = dontHaddock super.Agda;
-
   # Cannot compile its own test suite: https://github.com/haskell/network-uri/issues/10.
   network-uri = dontCheck super.network-uri;
 
   # The Haddock phase fails for one reason or another.
+  Agda = dontHaddock super.Agda;
   attoparsec-conduit = dontHaddock super.attoparsec-conduit;
   blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;
   bytestring-progress = dontHaddock super.bytestring-progress;
@@ -83,6 +81,7 @@ self: super: {
   hspec-discover = dontHaddock super.hspec-discover;
   http-client-conduit = dontHaddock super.http-client-conduit;
   http-client-multipart = dontHaddock super.http-client-multipart;
+  hxt = dontHaddock super.hxt;                                  # https://github.com/UweSchmidt/hxt/issues/38
   markdown-unlit = dontHaddock super.markdown-unlit;
   network-conduit = dontHaddock super.network-conduit;
   shakespeare-text = dontHaddock super.shakespeare-text;