haddock-2.4.2: added 'alex' build input

svn path=/nixpkgs/trunk/; revision=29570
This commit is contained in:
Peter Simons 2011-10-02 20:12:07 +00:00
parent 4cdf639958
commit 5328a95a3c

View File

@ -1,4 +1,4 @@
{ cabal, ghcPaths }: { cabal, alex, ghcPaths }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "haddock"; pname = "haddock";
@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ ghcPaths ]; buildDepends = [ ghcPaths ];
buildTools = [ alex ];
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";