2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamsmtp-" + version;
|
|
|
|
version = "1.10";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://thewalter.net/stef/software/clamsmtp/${name}.tar.gz";
|
|
|
|
sha256 = "0apr1pxifw6f1rbbsdrrwzs1dnhybg4hda3qqhqcw7p14r5xnbx5";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./header-order.patch ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|