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