2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, alex, Cabal, filepath, ghcPaths, happy, xhtml }:
|
2011-10-02 22:27:20 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "haddock";
|
2011-10-04 16:58:28 +02:00
|
|
|
version = "2.9.4";
|
|
|
|
sha256 = "18w5pa1zpjy9mmdzjh0hs8jybmky8j87vzry54nni6a3517c5x86";
|
2011-10-02 22:27:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal filepath ghcPaths xhtml ];
|
2011-10-02 22:27:20 +02:00
|
|
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-10-02 22:27:20 +02:00
|
|
|
};
|
|
|
|
})
|