2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2018-07-15 20:02:26 +00:00
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
|
|
|
, libmspack, systemd
|
2018-01-26 15:02:29 +00:00
|
|
|
}:
|
2015-09-29 18:08:53 +00:00
|
|
|
|
2012-07-23 14:21:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2019-08-19 04:38:13 +00:00
|
|
|
version = "0.101.3";
|
2012-07-23 14:21:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-07-28 21:36:38 +00:00
|
|
|
url = "https://www.clamav.net/downloads/production/${name}.tar.gz";
|
2019-08-19 04:38:13 +00:00
|
|
|
sha256 = "0f034sqqgngj3ry71f7j73g66n6mqfisjcw5529y5gcw9an2mm38";
|
2012-07-23 14:21:25 +00:00
|
|
|
};
|
|
|
|
|
2016-11-15 03:40:33 +00:00
|
|
|
# don't install sample config files into the absolute sysconfdir folder
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace ' etc ' ' '
|
|
|
|
'';
|
|
|
|
|
2018-01-26 15:02:29 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-11-15 01:02:25 +00:00
|
|
|
buildInputs = [
|
2018-07-15 20:02:26 +00:00
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack
|
|
|
|
systemd
|
2016-11-15 01:02:25 +00:00
|
|
|
];
|
2012-07-23 14:21:25 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-07-15 20:02:26 +00:00
|
|
|
"--libdir=$(out)/lib"
|
2016-11-15 03:40:33 +00:00
|
|
|
"--sysconfdir=/etc/clamav"
|
2018-07-15 20:02:26 +00:00
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd"
|
2017-08-26 09:22:15 +00:00
|
|
|
"--disable-llvm" # enabling breaks the build at the moment
|
2018-01-26 15:02:29 +00:00
|
|
|
"--with-zlib=${zlib.dev}"
|
2016-08-29 23:57:21 +00:00
|
|
|
"--with-xml=${libxml2.dev}"
|
2016-04-16 17:44:32 +00:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2016-04-16 16:47:59 +00:00
|
|
|
"--with-libcurl=${curl.dev}"
|
2018-07-15 20:02:26 +00:00
|
|
|
"--with-system-libmspack"
|
2015-06-07 12:34:43 +00:00
|
|
|
"--enable-milter"
|
2014-11-26 23:16:50 +00:00
|
|
|
];
|
2012-07-23 14:21:25 +00:00
|
|
|
|
2016-11-15 03:40:33 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/etc
|
|
|
|
cp etc/*.sample $out/etc
|
|
|
|
'';
|
|
|
|
|
2012-07-23 14:21:25 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-05-01 03:03:23 +00:00
|
|
|
homepage = https://www.clamav.net;
|
2013-10-05 14:22:46 +00:00
|
|
|
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
2012-07-23 14:21:25 +00:00
|
|
|
license = licenses.gpl2;
|
2018-01-26 15:02:29 +00:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight fpletz ];
|
2012-07-23 14:21:25 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|