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