summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2009-04-19 19:18:07 +0000
committerAndres Löh <mail@andres-loeh.de>2009-04-19 19:18:07 +0000
commite42598c74b9db741a71ade15914e77d9ecca6fcc (patch)
treed4015ae32e750aa3c51d4edce28d475f558011e5 /pkgs/development/tools
parente72b00b2d74795f19dd645f030ec2049adcb78eb (diff)
downloadnixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar.gz
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar.bz2
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar.lz
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar.xz
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.tar.zst
nixpkgs-e42598c74b9db741a71ade15914e77d9ecca6fcc.zip
Added Haskell platform meta package.
(Doesn't quite work nicely yet.)

svn path=/nixpkgs/trunk/; revision=15163
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/documentation/haddock/haddock-2.4.2.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/documentation/haddock/haddock-2.4.2.nix b/pkgs/development/tools/documentation/haddock/haddock-2.4.2.nix
index f3290d15fd6..ff7c982267e 100644
--- a/pkgs/development/tools/documentation/haddock/haddock-2.4.2.nix
+++ b/pkgs/development/tools/documentation/haddock/haddock-2.4.2.nix
@@ -1,11 +1,12 @@
-{cabal, ghcPaths}:
+{cabal, ghcPaths, libedit}:
 
 cabal.mkDerivation (self : {
   pname = "haddock";
   version = "2.4.2"; # Haskell Platform 2009.0.0
   name = self.fname;
   sha256 = "dbf0a7d0103a3ce6a91b2a3b96148c1b9c13ea7f8bd74260c21fe98df7839547";
-  propagatedBuildInputs = [ghcPaths];
+  # TODO: adding libedit here is a hack
+  propagatedBuildInputs = [ghcPaths libedit];
   meta = {
     description = "a tool for automatically generating documentation from annotated Haskell source code";
   };