2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2018-07-15 22:02:26 +02:00
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
|
|
|
, libmspack, systemd
|
2018-01-26 16:02:29 +01:00
|
|
|
}:
|
2015-09-29 20:08:53 +02:00
|
|
|
|
2012-07-23 16:21:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2018-10-16 09:31:09 +02:00
|
|
|
version = "0.100.2";
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-07-28 23:36:38 +02:00
|
|
|
url = "https://www.clamav.net/downloads/production/${name}.tar.gz";
|
2018-10-16 09:31:09 +02:00
|
|
|
sha256 = "1mkd41sxbjkfjinpx5b9kb85q529gj2s3d0klysssqhysh64ybja";
|
2012-07-23 16:21:25 +02:00
|
|
|
};
|
|
|
|
|
2016-11-15 04:40:33 +01:00
|
|
|
# don't install sample config files into the absolute sysconfdir folder
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace ' etc ' ' '
|
|
|
|
'';
|
|
|
|
|
2018-01-26 16:02:29 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-11-15 02:02:25 +01:00
|
|
|
buildInputs = [
|
2018-07-15 22:02:26 +02:00
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack
|
|
|
|
systemd
|
2016-11-15 02:02:25 +01:00
|
|
|
];
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-07-15 22:02:26 +02:00
|
|
|
"--libdir=$(out)/lib"
|
2016-11-15 04:40:33 +01:00
|
|
|
"--sysconfdir=/etc/clamav"
|
2018-07-15 22:02:26 +02:00
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd"
|
2017-08-26 11:22:15 +02:00
|
|
|
"--disable-llvm" # enabling breaks the build at the moment
|
2018-01-26 16:02:29 +01:00
|
|
|
"--with-zlib=${zlib.dev}"
|
2016-08-30 01:57:21 +02:00
|
|
|
"--with-xml=${libxml2.dev}"
|
2016-04-16 19:44:32 +02:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2016-04-16 18:47:59 +02:00
|
|
|
"--with-libcurl=${curl.dev}"
|
2018-07-15 22:02:26 +02:00
|
|
|
"--with-system-libmspack"
|
2015-06-07 14:34:43 +02:00
|
|
|
"--enable-milter"
|
2014-11-27 00:16:50 +01:00
|
|
|
];
|
2012-07-23 16:21:25 +02:00
|
|
|
|
2016-11-15 04:40:33 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/etc
|
|
|
|
cp etc/*.sample $out/etc
|
|
|
|
'';
|
|
|
|
|
2012-07-23 16:21:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-05-01 05:03:23 +02:00
|
|
|
homepage = https://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;
|
2018-01-26 16:02:29 +01:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight fpletz ];
|
2012-07-23 16:21:25 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|