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-02-18 11:11:16 +01:00
|
|
|
version = "0.4.0.4";
|
|
|
|
sha256 = "1s4s5z1xir9zmcbfz8mrznf2byclmg0qjjhwmpal2r9ly9g3na98";
|
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;
|
|
|
|
};
|
|
|
|
})
|