2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, blazeBuilder, blazeHtml, failure, parsec, shakespeare
|
|
|
|
, text
|
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";
|
2012-04-23 11:34:01 +02:00
|
|
|
version = "1.0.1.1";
|
|
|
|
sha256 = "16a7aym0cpcq9lsiwfh5bvgh1bkyz4j06bhyvnxawsdgzmmsbch4";
|
2011-08-29 22:26:52 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
blazeBuilder blazeHtml failure parsec shakespeare text
|
2011-08-29 22:26:52 +02:00
|
|
|
];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 11:41:12 +02:00
|
|
|
};
|
|
|
|
})
|