Added Haskell platform meta package.

(Doesn't quite work nicely yet.)

svn path=/nixpkgs/trunk/; revision=15163
This commit is contained in:
Andres Löh
2009-04-19 19:18:07 +00:00
parent e72b00b2d7
commit e42598c74b
3 changed files with 47 additions and 2 deletions

View File

@@ -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";
};