2015-06-07 14:34:43 +02:00
|
|
|
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
|
2016-02-26 10:05:55 +01:00
|
|
|
, libmilter, pcre }:
|
2012-07-23 16:21:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2016-02-26 10:05:55 +01:00
|
|
|
version = "0.99";
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 01:48:32 +02:00
|
|
|
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
|
2016-02-26 10:05:55 +01:00
|
|
|
sha256 = "1abyg349yr31z764jcgx67q5v098jrkrj88bqkzmys6xza62qyfj";
|
2012-07-23 16:21:25 +02:00
|
|
|
};
|
|
|
|
|
2016-02-26 10:05:55 +01:00
|
|
|
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-zlib=${zlib}"
|
|
|
|
"--with-libbz2-prefix=${bzip2}"
|
2014-11-27 00:16:50 +01:00
|
|
|
"--with-iconv-dir=${libiconv}"
|
2014-09-01 09:44:00 +02:00
|
|
|
"--with-xml=${libxml2}"
|
|
|
|
"--with-openssl=${openssl}"
|
|
|
|
"--with-libncurses-prefix=${ncurses}"
|
|
|
|
"--with-libcurl=${curl}"
|
2016-02-26 10:05:55 +01:00
|
|
|
"--with-pcre=${pcre}"
|
2015-06-07 14:34:43 +02:00
|
|
|
"--enable-milter"
|
2014-11-27 00:16:50 +01:00
|
|
|
"--disable-clamav"
|
|
|
|
];
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.clamav.net;
|
2013-10-05 16:22:46 +02:00
|
|
|
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
2012-07-23 16:21:25 +02:00
|
|
|
license = licenses.gpl2;
|
2015-05-03 02:28:13 +02:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight ];
|
2012-07-23 16:21:25 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|