From 5328a95a3c3a8a6dbf03d823cba288b9d5c8e360 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 2 Oct 2011 20:12:07 +0000 Subject: [PATCH] haddock-2.4.2: added 'alex' build input svn path=/nixpkgs/trunk/; revision=29570 --- pkgs/development/tools/documentation/haddock/2.4.2.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/documentation/haddock/2.4.2.nix b/pkgs/development/tools/documentation/haddock/2.4.2.nix index 226a4fd676e3..30b06ed280a1 100644 --- a/pkgs/development/tools/documentation/haddock/2.4.2.nix +++ b/pkgs/development/tools/documentation/haddock/2.4.2.nix @@ -1,4 +1,4 @@ -{ cabal, ghcPaths }: +{ cabal, alex, ghcPaths }: cabal.mkDerivation (self: { pname = "haddock"; @@ -7,6 +7,7 @@ cabal.mkDerivation (self: { isLibrary = true; isExecutable = true; buildDepends = [ ghcPaths ]; + buildTools = [ alex ]; meta = { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries";