3e0ac9b040
Several changes, some highlights: * Structure of haskell-packages.nix updated. It's now easier to select different default versions of packages for different versions of GHC. * GHC 7.0.2 is now default. * Haskell Platform 2011.2.0.0 has been added and is now default. * Several packages have been updated (gtk2hs, gitit, xmonad, darcs, ...). * Some old packages have been removed. svn path=/nixpkgs/trunk/; revision=26288
14 lines
439 B
Nix
14 lines
439 B
Nix
{cabal, ghcPaths, libedit}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "haddock";
|
|
version = "2.4.2"; # Haskell Platform 2009.0.0
|
|
name = self.fname;
|
|
sha256 = "dbf0a7d0103a3ce6a91b2a3b96148c1b9c13ea7f8bd74260c21fe98df7839547";
|
|
# TODO: adding libedit here is a hack
|
|
propagatedBuildInputs = [ghcPaths libedit];
|
|
meta = {
|
|
description = "a tool for automatically generating documentation from annotated Haskell source code";
|
|
};
|
|
})
|