2011-09-11 12:32:59 +02:00
|
|
|
{ cabal, shakespeare, text }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "shakespeare-text";
|
2011-10-03 22:21:23 +02:00
|
|
|
version = "0.10.2";
|
|
|
|
sha256 = "04n1aflg4b5byfsg494d4dskx25nyy0a654wl4cxz8920sl7qpha";
|
2011-09-11 12:32:59 +02:00
|
|
|
buildDepends = [ shakespeare text ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/book/templates";
|
|
|
|
description = "Interpolation with quasi-quotation: put variables strings";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-09-11 12:33:43 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-09-11 12:32:59 +02:00
|
|
|
};
|
|
|
|
})
|