Added a couple of web-programming-related Haskell packages.

svn path=/nixpkgs/trunk/; revision=22683
This commit is contained in:
Andres Löh
2010-07-21 09:41:12 +00:00
parent 7f3838c16a
commit df9f4a8696
9 changed files with 126 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
{cabal, text}:
cabal.mkDerivation (self : {
pname = "blaze-html";
version = "0.1.2";
sha256 = "c1e65e3d23e90a3830ceee69ecfac65c7a8a045da06443fb7690609a59480f5f";
propagatedBuildInputs = [text];
meta = {
description = "A blazingly fast HTML combinator library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})