9864618daf
svn path=/nixpkgs/trunk/; revision=30147
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.4";
|
|
sha256 = "10ik9rbj9srb1f7vavs5siidyybzbr4fpy3akv90qldd2xyifhxa";
|
|
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
|
|
];
|
|
};
|
|
})
|