2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, blazeBuilder, blazeHtml, failure, parsec, text }:
|
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";
|
2011-07-07 21:08:51 +02:00
|
|
|
version = "0.8.2.1";
|
|
|
|
sha256 = "0798ic6qap4npw2rx42xcgmi1fcbwqvyic5x6vyyf6abvxv16925";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ blazeBuilder blazeHtml failure parsec text ];
|
2010-07-21 11:41:12 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2010-07-21 11:41:12 +02:00
|
|
|
description = "Haml-like template files that are compile-time checked";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-21 11:41:12 +02:00
|
|
|
};
|
|
|
|
})
|