2012-05-15 11:50:48 +00:00
|
|
|
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, parsec
|
|
|
|
, shakespeare, text
|
2011-08-29 20:26:52 +00:00
|
|
|
}:
|
2010-07-21 09:41:12 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 09:41:12 +00:00
|
|
|
pname = "hamlet";
|
2012-08-14 14:24:47 +02:00
|
|
|
version = "1.1.0.2";
|
|
|
|
sha256 = "0knkc43ldz3jhn3pmsysqbzlsp8akh9kiyy2jncra9y0xhminpqy";
|
2011-08-29 20:26:52 +00:00
|
|
|
buildDepends = [
|
2012-05-15 11:50:48 +00:00
|
|
|
blazeBuilder blazeHtml blazeMarkup failure parsec shakespeare text
|
2011-08-29 20:26:52 +00:00
|
|
|
];
|
2010-07-21 09:41:12 +00:00
|
|
|
meta = {
|
2012-04-05 16:51:59 +00:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2010-07-21 09:41:12 +00:00
|
|
|
description = "Haml-like template files that are compile-time checked";
|
2012-04-05 16:51:59 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 23:00:20 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 09:41:12 +00:00
|
|
|
};
|
|
|
|
})
|