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