2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, hspec, HUnit, shakespeare, text }:
|
2011-09-11 03:32:59 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-text";
|
2013-09-08 13:05:41 -07:00
|
|
|
version = "1.0.0.7";
|
|
|
|
sha256 = "0vl8884a0x927svvkza5xzjn4g1rip8dak1zh9wkm4d0q7lhv2px";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ shakespeare text ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ hspec HUnit text ];
|
2011-09-11 03:32:59 -07:00
|
|
|
meta = {
|
2012-04-05 09:51:59 -07:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-09-11 03:32:59 -07:00
|
|
|
description = "Interpolation with quasi-quotation: put variables strings";
|
2012-04-09 05:37:39 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-09-11 03:32:59 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-11 03:32:59 -07:00
|
|
|
};
|
|
|
|
})
|