2015-06-07 13:34:43 +01:00
|
|
|
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
|
2015-09-29 19:08:53 +01:00
|
|
|
, libmilter, pcre, freshclamConf ? null }:
|
|
|
|
|
2012-07-23 15:21:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2016-04-12 10:16:18 +01:00
|
|
|
version = "0.99.1";
|
2012-07-23 15:21:25 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 00:48:32 +01:00
|
|
|
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
|
2016-04-12 10:16:18 +01:00
|
|
|
sha256 = "12nm4mxzx3qlbm65cadflzncjfkxdfqcp0lch29i5yfk4a8nhi71";
|
2012-07-23 15:21:25 +01:00
|
|
|
};
|
|
|
|
|
2016-02-26 09:05:55 +00:00
|
|
|
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
|
2012-07-23 15:21:25 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2016-04-16 18:50:01 +01:00
|
|
|
"--with-zlib=${zlib.dev}"
|
2016-04-16 17:46:12 +01:00
|
|
|
"--with-libbz2-prefix=${bzip2.dev}"
|
2014-11-26 23:16:50 +00:00
|
|
|
"--with-iconv-dir=${libiconv}"
|
2014-09-01 08:44:00 +01:00
|
|
|
"--with-xml=${libxml2}"
|
2016-04-16 18:44:32 +01:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2016-04-16 18:41:10 +01:00
|
|
|
"--with-libncurses-prefix=${ncurses.dev}"
|
2016-04-16 17:47:59 +01:00
|
|
|
"--with-libcurl=${curl.dev}"
|
2016-04-16 18:45:26 +01:00
|
|
|
"--with-pcre=${pcre.dev}"
|
2015-06-07 13:34:43 +01:00
|
|
|
"--enable-milter"
|
2014-11-26 23:16:50 +00:00
|
|
|
"--disable-clamav"
|
|
|
|
];
|
2012-07-23 15:21:25 +01:00
|
|
|
|
2015-09-29 19:08:53 +01:00
|
|
|
fixupPhase = if (freshclamConf != null) then ''echo "${freshclamConf}" > $out/etc/freshclam.conf'' else "";
|
|
|
|
|
2012-07-23 15:21:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.clamav.net;
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
2012-07-23 15:21:25 +01:00
|
|
|
license = licenses.gpl2;
|
2015-05-03 01:28:13 +01:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight ];
|
2012-07-23 15:21:25 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|