mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
25 lines
878 B
Nix
25 lines
878 B
Nix
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
, filepath, hslogger, html, monadControl, mtl, network, parsec
|
|
, sendfile, syb, systemFilepath, text, threads, time, transformers
|
|
, transformersBase, utf8String, xhtml, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-server";
|
|
version = "7.0.5";
|
|
sha256 = "11ialzvjdqmf62yl5r9yxir8fg5agfg1fysf3c3ja5456k07b466";
|
|
buildDepends = [
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
|
html monadControl mtl network parsec sendfile syb systemFilepath
|
|
text threads time transformers transformersBase 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 ];
|
|
};
|
|
})
|