28 lines
967 B
Nix
28 lines
967 B
Nix
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
, filepath, hslogger, html, HUnit, monadControl, mtl, network
|
|
, parsec, sendfile, syb, systemFilepath, text, threads, time
|
|
, timeCompat, transformers, transformersBase, utf8String, xhtml
|
|
, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-server";
|
|
version = "7.3.0";
|
|
sha256 = "094q6m6a4cxwmmw9hin2pphiq8gi0y4ma4vkvqv7rwqnn3mf9n0q";
|
|
buildDepends = [
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
|
html monadControl mtl network parsec sendfile syb systemFilepath
|
|
text threads time timeCompat transformers transformersBase
|
|
utf8String xhtml zlib
|
|
];
|
|
testDepends = [ HUnit parsec zlib ];
|
|
doCheck = false;
|
|
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 ];
|
|
};
|
|
})
|