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-02-05 09:42:41 +00:00
|
|
|
version = "0.7.0.1";
|
|
|
|
sha256 = "05z0a6x49f56bazkcdxpdi2a7pyzsiv7qc72grcz9sqjz1d6yagh";
|
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
|
|
|
};
|
|
|
|
})
|