1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Added HList package for Haskell.

svn path=/nixpkgs/trunk/; revision=17715
This commit is contained in:
Andres Löh 2009-10-08 09:46:56 +00:00
parent dc242687b2
commit 0b5b512471
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "HList";
version = "0.2";
sha256 = "410a77f8815cb873aff03896622e00918aaf99813bb55822942af4cc8c1a01b5";
meta = {
description = "Heterogeneous lists";
};
})

View file

@ -245,6 +245,10 @@ rec {
inherit cabal;
};
HList = import ../development/libraries/haskell/HList {
inherit cabal ;
};
hscolour = import ../development/libraries/haskell/hscolour {
inherit cabal;
};