a39f417ad7
- RSA: updated to version 1.0.6.3 - derive: updated to version 2.5.7 - hakyll: updated to version 3.2.7.0 - happstack-hamlet: updated to version 7.0.0 - idris: updated to version 0.9.2.1 svn path=/nixpkgs/trunk/; revision=33479
16 lines
514 B
Nix
16 lines
514 B
Nix
{ cabal, hamlet, happstackServer, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-hamlet";
|
|
version = "7.0.0";
|
|
sha256 = "15r6xpyg193iwqin96mn7c9x5w7l8q9m3vbgiwv7bxvhdrl1dp7j";
|
|
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 ];
|
|
};
|
|
})
|