clamsmtp: init at 1.10

This commit is contained in:
Léo Gaspard
2018-01-06 16:08:45 +01:00
committed by Joachim Fasting
parent b067aa2cad
commit e016a68bf1
2 changed files with 23 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "clamsmtp-" + version;
version = "1.10";
src = fetchurl {
url = "http://thewalter.net/stef/software/clamsmtp/${name}.tar.gz";
sha256 = "0apr1pxifw6f1rbbsdrrwzs1dnhybg4hda3qqhqcw7p14r5xnbx5";
};
meta = with stdenv.lib; {
description = "SMTP filter that allows to check for viruses using the ClamAV
anti-virus software";
homepage = http://thewalter.net/stef/software/clamsmtp/;
license = licenses.bsd3;
maintainers = [ maintainers.ekleog ];
platforms = platforms.all;
};
}
+3 -1
View File
@@ -11728,7 +11728,9 @@ with pkgs;
cayley = callPackage ../servers/cayley { };
charybdis = callPackage ../servers/irc/charybdis {};
charybdis = callPackage ../servers/irc/charybdis { };
clamsmtp = callPackage ../servers/mail/clamsmtp { };
clickhouse = callPackage ../servers/clickhouse { };