Added happstack and dependencies.

svn path=/nixpkgs/trunk/; revision=21107
This commit is contained in:
Andres Löh
2010-04-15 18:10:42 +00:00
parent 27a26afc55
commit 52fe24049c
11 changed files with 157 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
{cabal, mtl, sybWithClass, HaXml, happstackUtil, binary}:
cabal.mkDerivation (self : {
pname = "happstack-data";
version = "0.4.1";
sha256 = "0d1f96472a4e13b9a5218bce8bf819a50d1773b7e110141ab235d1d7701e39f6";
propagatedBuildInputs = [mtl sybWithClass HaXml happstackUtil binary];
meta = {
description = "Happstack data manipulation libraries";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@@ -0,0 +1,16 @@
{cabal, HUnit, HaXml, MaybeT, parsec, sendfile, utf8String, mtl, network, hslogger, happstackData, happstackUtil, xhtml, html, zlib}:
cabal.mkDerivation (self : {
pname = "happstack-server";
version = "0.4.1";
sha256 = "2a5d32b4e635160ffab8a90891d9c5ca0433969944ae4013ec8cebe25ba63658";
propagatedBuildInputs = [
HUnit HaXml MaybeT happstackData happstackUtil hslogger html
mtl network parsec sendfile utf8String xhtml zlib
];
meta = {
description = "Web related tools and services";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@@ -0,0 +1,17 @@
{cabal, mtl, hslogger, HUnit, QuickCheck, strictConcurrency,
unixCompat, SMTPClient}:
cabal.mkDerivation (self : {
pname = "happstack-util";
version = "0.4.1";
sha256 = "bb254140c30c39c420bc5a649da645f59df950f0a712c2dac4de1cc6572f05f9";
propagatedBuildInputs = [
mtl hslogger HUnit QuickCheck strictConcurrency unixCompat
SMTPClient
];
meta = {
description = "Miscellaneous utilities for Happstack packages";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})