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