nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-server.nix

28 lines
849 B
Nix
Raw Normal View History

{ 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
];
};
})