3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
555 B
Nix
18 lines
555 B
Nix
{ cabal, base64Bytestring, blazeBuilder, filepath, random, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "mime-mail";
|
|
version = "0.4.1.2";
|
|
sha256 = "01dw9zvgxmwg0jslw14a9kjrmyjvwla8bw40w2426ifdwwxb3ywy";
|
|
buildDepends = [
|
|
base64Bytestring blazeBuilder filepath random text
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/mime-mail";
|
|
description = "Compose MIME email messages";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|