2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, parsec, text }:
|
2011-08-29 13:27:05 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare";
|
2012-09-24 03:06:08 -07:00
|
|
|
version = "1.0.1.4";
|
|
|
|
sha256 = "01gw31g75v8r8hjvkv7mxvx7736ib9x9nqpxavpbrfplyxgk2y31";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ parsec text ];
|
2011-08-29 13:27:05 -07:00
|
|
|
meta = {
|
2012-04-05 09:51:59 -07:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2011-08-29 13:27:05 -07:00
|
|
|
description = "A toolkit for making compile-time interpolated templates";
|
2012-04-09 05:37:39 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-29 13:27:05 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-29 13:27:05 -07:00
|
|
|
};
|
|
|
|
})
|