2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, hspec, HUnit, parsec, shakespeare, text, xmlConduit }:
|
2012-11-21 12:23:29 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "xml-hamlet";
|
2013-09-08 22:05:41 +02:00
|
|
|
version = "0.4.0.5";
|
|
|
|
sha256 = "1w1ixjdbpbny332j24d5yjxc4i7cg83jc4yjdm6yl94y1sr90yc5";
|
2012-11-21 12:23:29 +01:00
|
|
|
buildDepends = [ parsec shakespeare text xmlConduit ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ hspec HUnit parsec shakespeare text xmlConduit ];
|
2012-11-21 12:23:29 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "Hamlet-style quasiquoter for XML content";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|