2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2018-07-15 21:02:26 +01:00
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
2020-06-15 11:09:27 +01:00
|
|
|
, libmspack, systemd, Foundation
|
2018-01-26 15:02:29 +00:00
|
|
|
}:
|
2015-09-29 19:08:53 +01:00
|
|
|
|
2012-07-23 15:21:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "clamav";
|
2020-05-20 13:05:03 +01:00
|
|
|
version = "0.102.3";
|
2012-07-23 15:21:25 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
|
2020-05-20 13:05:03 +01:00
|
|
|
sha256 = "14q6vi178ih60yz4ja33b6181va1dcj8fyscnmxfx2crav250c7d";
|
2012-07-23 15:21:25 +01: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 21:02:26 +01:00
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack
|
2020-06-15 11:09:27 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux systemd
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin Foundation;
|
2012-07-23 15:21:25 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-07-15 21:02:26 +01:00
|
|
|
"--libdir=$(out)/lib"
|
2016-11-15 03:40:33 +00:00
|
|
|
"--sysconfdir=/etc/clamav"
|
2017-08-26 10:22:15 +01:00
|
|
|
"--disable-llvm" # enabling breaks the build at the moment
|
2018-01-26 15:02:29 +00:00
|
|
|
"--with-zlib=${zlib.dev}"
|
2016-08-30 00:57:21 +01:00
|
|
|
"--with-xml=${libxml2.dev}"
|
2016-04-16 18:44:32 +01:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2016-04-16 17:47:59 +01:00
|
|
|
"--with-libcurl=${curl.dev}"
|
2018-07-15 21:02:26 +01:00
|
|
|
"--with-system-libmspack"
|
2015-06-07 13:34:43 +01:00
|
|
|
"--enable-milter"
|
2020-06-15 11:09:27 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux
|
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd";
|
2012-07-23 15:21:25 +01:00
|
|
|
|
2016-11-15 03:40:33 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/etc
|
|
|
|
cp etc/*.sample $out/etc
|
|
|
|
'';
|
|
|
|
|
2012-07-23 15:21:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://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;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight fpletz globin ];
|
2020-06-15 11:09:27 +01:00
|
|
|
platforms = platforms.unix;
|
2012-07-23 15:21:25 +01:00
|
|
|
};
|
|
|
|
}
|