076a50553d
svn path=/nixpkgs/trunk/; revision=31815
19 lines
565 B
Nix
19 lines
565 B
Nix
{ cabal, hamlet, happstackServer, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-hamlet";
|
|
version = "6.2.3";
|
|
sha256 = "0k8g0rx9ikfklsrry2hxmm4hxwn31ra004qllpn6aldg6dr2w5n1";
|
|
buildDepends = [ hamlet happstackServer text ];
|
|
meta = {
|
|
homepage = "http://www.happstack.com/";
|
|
description = "Support for Hamlet HTML templates in Happstack";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|