c664157e7d
- attoparsec: updated to version 0.10.2.0 - blaze-html: dropped obsolete version 0.4.3.4 - cairo: updated to version 0.12.3.1 - cryptocipher: updated to version 0.3.4 - file-embed: updated to version 0.0.4.4 - glib: updated to version 0.12.3.1 - gtk2hs-buildtools: updated to version 0.12.3.1 - gtksourceview2: updated to version 0.12.3.1 - hakyll: updated to version 3.3.0.0 - happstack-server: updated to version 7.0.2 - hjsmin: updated to version 0.1.2 - http-conduit: updated to version 1.4.1.7 - http-types: updated to version 0.6.11 - language-c-quote: updated to version 0.3.1.2 - parallel: added version 3.2.0.3 - regex-pcre: updated to version 0.94.3 - regex-posix: added version 0.95.2 - shakespeare-js: updated to version 1.0.0.3 - svgcairo: updated to version 0.12.1.1 - text: added version 0.11.2.1 - vty: updated to version 4.7.0.14 - warp: updated to version 1.2.1.1 - yaml: updated to version 0.7.0.2 - yesod-static: updated to version 1.0.0.3 svn path=/nixpkgs/trunk/; revision=34255
26 lines
900 B
Nix
26 lines
900 B
Nix
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
, filepath, hslogger, html, monadControl, mtl, network, parsec
|
|
, sendfile, syb, systemFilepath, text, time, transformers
|
|
, transformersBase, utf8String, xhtml, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-server";
|
|
version = "7.0.2";
|
|
sha256 = "0p4vy1h3nkq7riipizljc9wz64y3jfiyq5vzv1r963badk3q0xzb";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
|
html monadControl mtl network parsec sendfile syb systemFilepath
|
|
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 ];
|
|
};
|
|
})
|