d7d1f995e6
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events, gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail, pandoc, snap, wai-app-static, yesod-static, and urlencoded.
17 lines
534 B
Nix
17 lines
534 B
Nix
{ cabal, hamlet, happstackServer, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-hamlet";
|
|
version = "7.0.1";
|
|
sha256 = "13ayypl2x402h6a7yq7fvgd2mn21gl5gcw2hk7f5vr2bdlvwv53n";
|
|
buildDepends = [ hamlet happstackServer text ];
|
|
jailbreak = true;
|
|
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 ];
|
|
};
|
|
})
|