summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-server.nix
blob: 2461bb1eaa96ff7418a1b1cd147bd7aa51f18d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ cabal, MaybeT, blazeHtml, extensibleExceptions, happstackData
, happstackUtil, hslogger, html, mtl, network, parsec, sendfile
, syb, text, time, utf8String, xhtml, zlib
}:

cabal.mkDerivation (self: {
  pname = "happstack-server";
  version = "6.1.6";
  sha256 = "1z4c2bymyyvhs47ynrlp4d2cwqws2d2isiwj82c33qcmk4znargg";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    MaybeT blazeHtml extensibleExceptions happstackData happstackUtil
    hslogger html 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
    ];
  };
})