Skip to content

Commit

Permalink
Updated mime-mail-ses package. Fixes #532
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Nov 5, 2020
1 parent d738f64 commit f3246f0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions NixSupport/haskell-packages/mime-mail-ses.nix
@@ -0,0 +1,28 @@
{ mkDerivation, base, base16-bytestring, base64-bytestring
, byteable, bytestring, case-insensitive, conduit, cryptohash
, http-client, http-client-tls, http-conduit, http-types, mime-mail
, optparse-applicative, stdenv, tasty, tasty-hunit, text, time
, xml-conduit, xml-types
}:
mkDerivation {
pname = "mime-mail-ses";
version = "0.4.3";
sha256 = "0v4b0y28kf7mx80z16j82wmaccpggkc262f7cn9g9j2nfayy2xhj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base base16-bytestring base64-bytestring byteable bytestring
case-insensitive conduit cryptohash http-client http-client-tls
http-conduit http-types mime-mail text time xml-conduit xml-types
];
executableHaskellDepends = [
base http-client http-client-tls mime-mail optparse-applicative
text
];
testHaskellDepends = [
base bytestring case-insensitive tasty tasty-hunit time
];
homepage = "http://github.com/snoyberg/mime-mail";
description = "Send mime-mail messages via Amazon SES";
license = stdenv.lib.licenses.mit;
}

0 comments on commit f3246f0

Please sign in to comment.