nixpkgs/pkgs/servers/mail/clamsmtp/default.nix

23 lines
629 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-12-31 03:03:28 +00:00
stdenv.mkDerivation rec {
pname = "clamsmtp";
2017-12-31 03:03:28 +00:00
version = "1.10";
src = fetchurl {
url = "http://thewalter.net/stef/software/clamsmtp/${pname}-${version}.tar.gz";
2017-12-31 03:03:28 +00:00
sha256 = "0apr1pxifw6f1rbbsdrrwzs1dnhybg4hda3qqhqcw7p14r5xnbx5";
};
patches = [ ./header-order.patch ];
meta = with lib; {
2017-12-31 03:03:28 +00:00
description = "SMTP filter that allows to check for viruses using the ClamAV
anti-virus software";
homepage = "http://thewalter.net/stef/software/clamsmtp/";
2017-12-31 03:03:28 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.ekleog ];
platforms = platforms.all;
};
}