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