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