3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/hamlet/default.nix
2012-11-11 22:50:40 +01:00

20 lines
629 B
Nix

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