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