2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, blazeBuilder, blazeMarkup, HUnit, QuickCheck
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
|
|
|
|
}:
|
2010-07-21 09:41:12 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 09:41:12 +00:00
|
|
|
pname = "blaze-html";
|
2013-03-09 23:26:26 +00:00
|
|
|
version = "0.6.1.1";
|
|
|
|
sha256 = "08zfmkvahmm613r0nrabwl5zv9ragcrhdqsa8jfdrfdkrf6ckbrc";
|
2012-05-14 09:56:52 +00: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 09:41:12 +00:00
|
|
|
meta = {
|
2011-08-07 18:23:23 +00: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 18:23:23 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 09:41:12 +00:00
|
|
|
};
|
|
|
|
})
|