haddock: update to version 2.14.3

This commit is contained in:
Peter Simons 2014-07-18 12:24:43 +02:00
parent dfbce69f05
commit 125aeed5a0
2 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,23 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, Cabal, deepseq, filepath, ghcPaths, hspec, QuickCheck
, xhtml
}:
cabal.mkDerivation (self: {
pname = "haddock";
version = "2.14.3";
sha256 = "031ikrsbkpmmwgdkgdr8s19dfx5y6n39rmyljjdfqygas17gcm6l";
isLibrary = true;
isExecutable = true;
buildDepends = [ Cabal deepseq filepath ghcPaths xhtml ];
testDepends = [ Cabal deepseq filepath hspec QuickCheck ];
doCheck = false;
meta = {
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View File

@ -2760,7 +2760,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
haddock_2_12_0 = callPackage ../development/tools/documentation/haddock/2.12.0.nix {};
haddock_2_13_2 = callPackage ../development/tools/documentation/haddock/2.13.2.nix {};
haddock_2_14_2 = callPackage ../development/tools/documentation/haddock/2.14.2.nix {};
haddock = self.haddock_2_14_2;
haddock_2_14_3 = callPackage ../development/tools/documentation/haddock/2.14.3.nix {};
haddock = self.haddock_2_14_3;
HandsomeSoup = callPackage ../development/libraries/haskell/HandsomeSoup {};