blaze-from-html: add version 0.3.2.1

This commit is contained in:
Cody Goodman 2014-07-15 20:14:10 -05:00
parent 9087d03190
commit 5ba2e544d2
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, filepath, tagsoup }:
cabal.mkDerivation (self: {
pname = "blaze-from-html";
version = "0.3.2.1";
sha256 = "1li3zxrgwj5rgk894d9zwfxnx5dfjzkvjlcyck2g7s0awfp2kq4s";
isLibrary = false;
isExecutable = true;
buildDepends = [ filepath tagsoup ];
meta = {
homepage = "http://jaspervdj.be/blaze";
description = "Tool to convert HTML to BlazeHtml code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -262,6 +262,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
blazeBuilderEnumerator = callPackage ../development/libraries/haskell/blaze-builder-enumerator {};
blazeFromHtml = callPackage ../development/libraries/haskell/blaze-from-html {};
blazeHtml = callPackage ../development/libraries/haskell/blaze-html {};
blazeMarkup = callPackage ../development/libraries/haskell/blaze-markup {};