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