nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-server.nix
Peter Simons ac69747aa8 Regenerated all Haskell packages with the latest version of cabal2nix.
svn path=/nixpkgs/trunk/; revision=32292
2012-02-14 17:00:37 +00:00

29 lines
882 B
Nix

{ cabal, blazeHtml, Cabal, extensibleExceptions, filepath
, happstackData, happstackUtil, hslogger, html, MaybeT, mtl
, network, parsec, sendfile, syb, text, time, utf8String, xhtml
, zlib
}:
cabal.mkDerivation (self: {
pname = "happstack-server";
version = "6.2.5";
sha256 = "196s8i3v55i10nkapkvzyw048flshw8mlm604548f0qjciynfjmg";
isLibrary = true;
isExecutable = true;
buildDepends = [
blazeHtml Cabal extensibleExceptions filepath 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
];
};
})