880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
19 lines
609 B
Nix
19 lines
609 B
Nix
{ cabal, alex, Cabal, filepath, ghcPaths, happy }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haddock";
|
|
version = "2.4.2";
|
|
sha256 = "dbf0a7d0103a3ce6a91b2a3b96148c1b9c13ea7f8bd74260c21fe98df7839547";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ Cabal filepath ghcPaths ];
|
|
buildTools = [ alex happy ];
|
|
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 ];
|
|
};
|
|
})
|