2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, blazeHtml, extensibleExceptions, happstackData
|
|
|
|
, happstackUtil, hslogger, html, MaybeT, mtl, network, parsec
|
|
|
|
, sendfile, syb, text, time, utf8String, xhtml, zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2010-04-15 20:10:42 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 20:23:44 +02:00
|
|
|
pname = "happstack-server";
|
|
|
|
version = "6.1.6";
|
|
|
|
sha256 = "1z4c2bymyyvhs47ynrlp4d2cwqws2d2isiwj82c33qcmk4znargg";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-15 00:52:05 +02:00
|
|
|
blazeHtml extensibleExceptions happstackData happstackUtil hslogger
|
|
|
|
html MaybeT mtl network parsec sendfile syb text time utf8String
|
2011-08-10 01:00:20 +02:00
|
|
|
xhtml zlib
|
2011-08-07 20:23:44 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://happstack.com";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Web related tools and services";
|
2011-08-07 20:23:44 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 20:23:44 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2010-04-15 20:10:42 +02:00
|
|
|
];
|
2011-08-07 20:23:44 +02:00
|
|
|
};
|
2010-04-15 20:10:42 +02:00
|
|
|
})
|