Haskell libraries required for Snap development

This commit is contained in:
Daniel Santa Cruz
2012-07-19 22:37:21 -04:00
parent bfc2de46d1
commit a2762b5254
13 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, parsec, text
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "xmlhtml";
version = "0.2.0.2";
sha256 = "0dqlqx3cnrqap3ficdkmwm8661j8i7qknb8xhjqvfmnb9pwqdks2";
buildDepends = [
blazeBuilder blazeHtml blazeMarkup parsec text unorderedContainers
];
meta = {
description = "XML parser and renderer with HTML 5 quirks mode";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})