nixpkgs/pkgs/development/libraries/haskell/hamlet/default.nix

23 lines
641 B
Nix
Raw Normal View History

{ 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
];
};
})