nixpkgs/pkgs/development/libraries/haskell/hamlet/default.nix
2012-08-09 12:11:14 +02:00

20 lines
629 B
Nix

{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, parsec
, shakespeare, text
}:
cabal.mkDerivation (self: {
pname = "hamlet";
version = "1.1.0.1";
sha256 = "14qlpdfnj90ilgcgll96rrpc4cjc218q7p7kc6y391rkf393453p";
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 ];
};
})