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,14 @@
{cabal, mtl}:
cabal.mkDerivation (self : {
pname = "MaybeT";
version = "0.1.2";
sha256 = "995e61165122656807d84174e5c1516340fd7ddeba6571c20751352a8476b632";
propagatedBuildInputs = [mtl];
meta = {
description = "MaybeT monad transformer";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@@ -0,0 +1,14 @@
{cabal, hsemail, network}:
cabal.mkDerivation (self : {
pname = "SMTPClient";
version = "1.0.2";
sha256 = "b835cebf22e9281778deeec3ceffeb95aa8ae9c0e1f97e8e9734cf5d87ecba5f";
propagatedBuildInputs = [hsemail network];
meta = {
description = "A simple SMTP client library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

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];
};
})

View File

@@ -0,0 +1,14 @@
{cabal, mtl, parsec}:
cabal.mkDerivation (self : {
pname = "hsemail";
version = "1.6";
sha256 = "a8ba7e8cfb9213bb2ee61166bc8352e4353560d06f418a0c729aeb1d50b3a1fd";
propagatedBuildInputs = [mtl parsec];
meta = {
description = "Internet Message Parsers";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@@ -0,0 +1,14 @@
{cabal, network}:
cabal.mkDerivation (self : {
pname = "sendfile";
version = "0.6.1";
sha256 = "c21b7f0f9a03a5e6d9b0691f5f0be9969d175f0514becdc199f0fd49097e51a2";
propagatedBuildInputs = [network];
meta = {
description = "A portable sendfile library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@@ -2,8 +2,8 @@
cabal.mkDerivation (self : {
pname = "strict-concurrency";
version = "0.2.1";
sha256 = "8838600033bde2ce7ca6bd95a3815412da67244b57dfc0e2246a8f2469f5fd9c";
version = "0.2.3";
sha256 = "21641b983b226e47727ff565184a5f2b312c7979ff487a5e478f5cfc82f78f18";
propagatedBuildInputs = [parallel];
meta = {
description = "Strict concurrency abstractions";

View File

@@ -2,8 +2,8 @@
cabal.mkDerivation (self : {
pname = "syb-with-class";
version = "0.5.1";
sha256 = "71f8ada3f5c3a41cbbc73f11ba4d1ffd51509716657564f12856f94f041ecbd6";
version = "0.6";
sha256 = "8ee836b491b0f64ab0920d1a7314323439665a7b1afa78810cbbc95dc658bfdc";
meta = {
description = "Scrap Your Boilerplate With Class";
};

View File

@@ -0,0 +1,13 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "unix-compat";
version = "0.1.2.1";
sha256 = "553326e140f71f09cedeec5f74666171c2ad2b3d9ba4312da97da02cbf8a2e85";
meta = {
description = "Portable POSIX-compatibility layer";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})