Updated build expressions for the current version of cabal.nix.

svn path=/nixpkgs/trunk/; revision=28772
This commit is contained in:
Peter Simons
2011-08-23 10:35:49 +00:00
parent 1972e6f6dc
commit c8ae7cc8bb
34 changed files with 153 additions and 108 deletions

View File

@@ -1,12 +1,12 @@
{cabal, ghcPaths, libedit}:
{ cabal, ghcPaths }:
cabal.mkDerivation (self: {
pname = "haddock";
version = "2.4.2"; # Haskell Platform 2009.0.0
name = self.fname;
version = "2.4.2";
sha256 = "dbf0a7d0103a3ce6a91b2a3b96148c1b9c13ea7f8bd74260c21fe98df7839547";
# TODO: adding libedit here is a hack
propagatedBuildInputs = [ghcPaths libedit];
isLibrary = true;
isExecutable = true;
buildDepends = [ ghcPaths ];
meta = {
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";