haddock-2.4.2: added 'happy' build input

svn path=/nixpkgs/trunk/; revision=29571
This commit is contained in:
Peter Simons 2011-10-02 20:13:54 +00:00
parent 5328a95a3c
commit 3277d89fcf

View File

@ -1,4 +1,4 @@
{ cabal, alex, ghcPaths }:
{ cabal, alex, ghcPaths, happy }:
cabal.mkDerivation (self: {
pname = "haddock";
@ -7,7 +7,7 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ ghcPaths ];
buildTools = [ alex ];
buildTools = [ alex happy ];
meta = {
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";