Added data-reify Haskell library.

svn path=/nixpkgs/trunk/; revision=16303
This commit is contained in:
Andres Löh 2009-07-10 09:42:18 +00:00
parent 471518d65b
commit c30a867383
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "data-reify";
version = "0.4";
sha256 = "567536195159117e14bb4e9a9c13a7de179da27c45966e5a5c189a9df33b11fa";
meta = {
description = "Reify a recursive data structure into an explicit graph";
};
})

View file

@ -63,6 +63,10 @@ rec {
inherit cabal;
};
dataReify = import ../development/libraries/haskell/data-reify {
inherit cabal;
};
digest = import ../development/libraries/haskell/digest {
inherit cabal;
inherit (pkgs) zlib;