3864892222
svn path=/nixpkgs/trunk/; revision=29134
28 lines
849 B
Nix
28 lines
849 B
Nix
{ cabal, blazeHtml, extensibleExceptions, happstackData
|
|
, happstackUtil, hslogger, html, MaybeT, mtl, network, parsec
|
|
, sendfile, syb, text, time, utf8String, xhtml, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-server";
|
|
version = "6.2.4";
|
|
sha256 = "0lhyjaxw1qkh1pi0v14j7ya2ljrfizmxwahrhqk3sasnf2mrqycp";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
blazeHtml extensibleExceptions happstackData happstackUtil hslogger
|
|
html MaybeT mtl network parsec sendfile syb text time utf8String
|
|
xhtml zlib
|
|
];
|
|
meta = {
|
|
homepage = "http://happstack.com";
|
|
description = "Web related tools and services";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|