haskell: add pop3-client and smtp-mail (by cabal2nix)
This commit is contained in:
19
pkgs/development/libraries/haskell/smtp-mail/default.nix
Normal file
19
pkgs/development/libraries/haskell/smtp-mail/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ cabal, base16Bytestring, base64Bytestring, cryptohash, filepath
|
||||
, mimeMail, network, text
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "smtp-mail";
|
||||
version = "0.1.4.3";
|
||||
sha256 = "0kpm42n7s3rvkn9i3s8wvkdrq2d85qy422y6p2r4s7nivh6sx1dk";
|
||||
buildDepends = [
|
||||
base16Bytestring base64Bytestring cryptohash filepath mimeMail
|
||||
network text
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/jhickner/smtp-mail";
|
||||
description = "Simple email sending via SMTP";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user