nixpkgs/pkgs/tools/security/clamav/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
, libmilter, pcre, freshclamConf ? null }:
2012-07-23 14:21:25 +00:00
stdenv.mkDerivation rec {
name = "clamav-${version}";
2016-02-26 09:05:55 +00:00
version = "0.99";
2012-07-23 14:21:25 +00:00
src = fetchurl {
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
2016-02-26 09:05:55 +00:00
sha256 = "1abyg349yr31z764jcgx67q5v098jrkrj88bqkzmys6xza62qyfj";
2012-07-23 14:21:25 +00:00
};
2016-02-26 09:05:55 +00:00
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
2012-07-23 14:21:25 +00:00
configureFlags = [
"--with-zlib=${zlib}"
"--with-libbz2-prefix=${bzip2}"
"--with-iconv-dir=${libiconv}"
2014-09-01 07:44:00 +00:00
"--with-xml=${libxml2}"
"--with-openssl=${openssl}"
"--with-libncurses-prefix=${ncurses}"
"--with-libcurl=${curl}"
2016-02-26 09:05:55 +00:00
"--with-pcre=${pcre}"
"--enable-milter"
"--disable-clamav"
];
2012-07-23 14:21:25 +00:00
fixupPhase = if (freshclamConf != null) then ''echo "${freshclamConf}" > $out/etc/freshclam.conf'' else "";
2012-07-23 14:21:25 +00:00
meta = with stdenv.lib; {
homepage = http://www.clamav.net;
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
2012-07-23 14:21:25 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ phreedom robberer qknight ];
2012-07-23 14:21:25 +00:00
platforms = platforms.linux;
};
}