2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, hspec
|
2014-02-18 12:06:00 +01:00
|
|
|
, HUnit, parsec, shakespeare, systemFileio, systemFilepath, text
|
|
|
|
, time
|
2011-08-29 22:26:52 +02:00
|
|
|
}:
|
2010-07-21 11:41:12 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 11:41:12 +02:00
|
|
|
pname = "hamlet";
|
2014-02-21 23:33:34 +01:00
|
|
|
version = "1.1.9";
|
|
|
|
sha256 = "194a4qnmpgralhvrv6813qfjjy80919famh824lyl9iryqwsbfkc";
|
2011-08-29 22:26:52 +02:00
|
|
|
buildDepends = [
|
2014-02-18 12:06:00 +01:00
|
|
|
blazeBuilder blazeHtml blazeMarkup failure parsec shakespeare
|
|
|
|
systemFileio systemFilepath text time
|
2011-08-29 22:26:52 +02:00
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ blazeHtml blazeMarkup hspec HUnit parsec text ];
|
2010-07-21 11:41:12 +02:00
|
|
|
meta = {
|
2012-04-05 18:51:59 +02:00
|
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
2010-07-21 11:41:12 +02:00
|
|
|
description = "Haml-like template files that are compile-time checked";
|
2012-04-05 18:51:59 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 11:41:12 +02:00
|
|
|
};
|
|
|
|
})
|