2014-11-27 00:16:50 +01:00
|
|
|
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl }:
|
2012-07-23 16:21:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2015-02-06 08:56:38 +01:00
|
|
|
version = "0.98.6";
|
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";
|
2015-02-06 08:56:38 +01:00
|
|
|
sha256 = "0l99a0shgzpl8rvrrgbm1ki2zxlb7g1n82bhq7f2snj4amfj94b5";
|
2012-07-23 16:21:25 +02:00
|
|
|
};
|
|
|
|
|
2014-11-27 00:16:50 +01:00
|
|
|
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv ];
|
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}"
|
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;
|
2014-09-18 08:08:48 +02:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.robberer ];
|
2012-07-23 16:21:25 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|