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