add HaskellNet

This commit is contained in:
Hoang Xuan Phu
2014-08-13 21:55:04 +08:00
parent cdabab5b28
commit f7a460af14
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, base64String, Crypto, mimeMail, mtl, network, text }:
cabal.mkDerivation (self: {
pname = "HaskellNet";
version = "0.3.1";
sha256 = "168w6y5rizszq1428amxbkhww65sy3b7czxpjyrzzq3dhjn517nr";
buildDepends = [ base64String Crypto mimeMail mtl network text ];
meta = {
homepage = "https://github.com/jtdaugherty/HaskellNet";
description = "Client support for POP3, SMTP, and IMAP";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})