db8f709430
- derp: updated to version 0.1.6 - happstack-server: updated to version 6.6.5 - hlint: updated to version 1.8.26 svn path=/nixpkgs/trunk/; revision=33453
26 lines
869 B
Nix
26 lines
869 B
Nix
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
, filepath, hslogger, html, monadControl, mtl, network, parsec
|
|
, sendfile, syb, text, time, transformers, transformersBase
|
|
, utf8String, xhtml, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-server";
|
|
version = "6.6.5";
|
|
sha256 = "1s0sa0sk2g6q55xwmzzdca327kp7mhxwc4dlg8lrdqa4dr3hm3gj";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
|
html monadControl mtl network parsec sendfile syb text 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 ];
|
|
};
|
|
})
|