haskell-haddock: add version 2.15.0

This commit is contained in:
Peter Simons
2014-09-01 15:12:59 +02:00
parent 3c63776aa5
commit 49c7b7040b
3 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, Cabal, filepath, haddockApi }:
cabal.mkDerivation (self: {
pname = "haddock";
version = "2.15.0";
sha256 = "1vay0v0a02xj2m40w71vmjadlm6pzv309r1jhr61xv1wnj88i75w";
isLibrary = false;
isExecutable = true;
buildDepends = [ haddockApi ];
testDepends = [ Cabal filepath ];
preCheck = "unset GHC_PACKAGE_PATH";
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;
};
})