20 lines
629 B
Nix
20 lines
629 B
Nix
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, parsec
|
|
, shakespeare, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hamlet";
|
|
version = "1.1.0.2";
|
|
sha256 = "0knkc43ldz3jhn3pmsysqbzlsp8akh9kiyy2jncra9y0xhminpqy";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml blazeMarkup failure parsec shakespeare text
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
|
description = "Haml-like template files that are compile-time checked";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|