2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, blazeBuilder, blazeMarkup, HUnit, QuickCheck
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
|
|
|
|
}:
|
2010-07-21 10:41:12 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 10:41:12 +01:00
|
|
|
pname = "blaze-html";
|
2014-01-13 14:40:06 +00:00
|
|
|
version = "0.6.1.3";
|
|
|
|
sha256 = "0hjyi3iv2770wicgfjipa901vk7mwr8kknfqvj3v9kzcvb4lq5aq";
|
2012-05-14 10:56:52 +01:00
|
|
|
buildDepends = [ blazeBuilder blazeMarkup text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
blazeBuilder blazeMarkup HUnit QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 text
|
|
|
|
];
|
2010-07-21 10:41:12 +01:00
|
|
|
meta = {
|
2011-08-07 19:23:23 +01:00
|
|
|
homepage = "http://jaspervdj.be/blaze";
|
2011-11-06 18:36:21 +00:00
|
|
|
description = "A blazingly fast HTML combinator library for Haskell";
|
2011-08-07 19:23:23 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 10:41:12 +01:00
|
|
|
};
|
|
|
|
})
|