d5fe66a5f8
svn path=/nixpkgs/trunk/; revision=30591
23 lines
641 B
Nix
23 lines
641 B
Nix
{ cabal, blazeBuilder, blazeHtml, failure, parsec, shakespeare
|
|
, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hamlet";
|
|
version = "0.10.5";
|
|
sha256 = "0kizy0qij6zbayrbb3gr4iqys1551ax5c8w5lvh6chg3ypl1i1m3";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml failure parsec shakespeare text
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/templates";
|
|
description = "Haml-like template files that are compile-time checked";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|