From 3a9a8b58adaf4755cbbe80a4a485e238216e14bd Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Tue, 8 Apr 2014 11:35:18 +0100 Subject: [PATCH] haskellPackages.httpClientMultipart: Do not build haddocks This package now has no modules, so there is no documentation to build. The library itself is deprecated, and should probably be removed from nixpkgs soon. --- .../libraries/haskell/http-client-multipart/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/haskell/http-client-multipart/default.nix b/pkgs/development/libraries/haskell/http-client-multipart/default.nix index 3cf09f583a7a..4413bf54d705 100644 --- a/pkgs/development/libraries/haskell/http-client-multipart/default.nix +++ b/pkgs/development/libraries/haskell/http-client-multipart/default.nix @@ -11,4 +11,6 @@ cabal.mkDerivation (self: { license = self.stdenv.lib.licenses.mit; platforms = self.ghc.meta.platforms; }; + # This library now contains now modules as it is deprecated. + noHaddock = true; })