summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/smtp-mail/default.nix
blob: 814a89f70c2c634a2c1a3200958d3a10a4796f26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, base16Bytestring, base64Bytestring, cryptohash, filepath
, mimeMail, network, text
}:

cabal.mkDerivation (self: {
  pname = "smtp-mail";
  version = "0.1.4.4";
  sha256 = "055b736sr9w4dxf1p5xjfsisqxk49kz4d3hyqwgdvi8zzvi31vp6";
  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;
  };
})