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

19 lines
596 B
Nix
Raw Normal View History

{ cabal, blazeBuilder, blazeHtml, failure, parsec, text }:
cabal.mkDerivation (self: {
pname = "hamlet";
version = "0.8.2.1";
sha256 = "0798ic6qap4npw2rx42xcgmi1fcbwqvyic5x6vyyf6abvxv16925";
buildDepends = [ blazeBuilder blazeHtml failure parsec text ];
meta = {
homepage = "http://www.yesodweb.com/";
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
];
};
})