haskell-haddock: add version 2.14.1
This commit is contained in:
22
pkgs/development/tools/documentation/haddock/2.14.1.nix
Normal file
22
pkgs/development/tools/documentation/haddock/2.14.1.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ cabal, alex, Cabal, deepseq, filepath, ghcPaths, happy, hspec
|
||||
, QuickCheck, xhtml
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "haddock";
|
||||
version = "2.14.1";
|
||||
sha256 = "1mxkphzdfd5c8dklfl09ajqwhw8ibvzl0cqrfr2j8rn0j03w46x6";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ Cabal deepseq filepath ghcPaths xhtml ];
|
||||
testDepends = [ Cabal deepseq filepath hspec QuickCheck ];
|
||||
buildTools = [ alex happy ];
|
||||
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 ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user