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";
|
2014-02-24 01:12:04 -08:00
|
|
|
version = "1.0.2";
|
|
|
|
sha256 = "0vhk5g5pm3gz8gzr7cbvkp920x4lmb9pkb9k6yhlj8wfb93bg93q";
|
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
|
|
|
};
|
|
|
|
})
|