2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, hamlet, happstackServer, text }:
|
2011-09-09 18:44:33 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "happstack-hamlet";
|
2012-10-23 16:29:58 +00:00
|
|
|
version = "7.0.2";
|
|
|
|
sha256 = "0hsmvv5rggyl7sa4sp30zyr43k6zj7dlpd0mb916wzcqrnyxa34a";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ hamlet happstackServer text ];
|
2011-09-09 18:44:33 +00:00
|
|
|
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;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-09-09 18:44:33 +00:00
|
|
|
};
|
|
|
|
})
|