2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config
|
2018-07-15 22:02:26 +02:00
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
2020-11-26 21:17:17 +01:00
|
|
|
, libmspack, systemd, Foundation, json_c, check
|
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 {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "clamav";
|
2021-04-12 11:13:35 +02:00
|
|
|
version = "0.103.2";
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
|
2021-04-12 11:13:35 +02:00
|
|
|
sha256 = "sha256-1LXQrGZiYuQjoyb7VHeMqnxpYk1sP5VCiV/rhHgnG9I=";
|
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 ' ' '
|
|
|
|
'';
|
|
|
|
|
2020-11-26 21:17:17 +01:00
|
|
|
enableParallelBuilding = true;
|
2020-12-08 03:13:01 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-11-15 02:02:25 +01:00
|
|
|
buildInputs = [
|
2020-11-26 21:17:17 +01:00
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack json_c check
|
2021-01-15 10:19:50 +01:00
|
|
|
] ++ lib.optional stdenv.isLinux systemd
|
|
|
|
++ lib.optional stdenv.isDarwin Foundation;
|
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"
|
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}"
|
2020-11-26 21:17:17 +01:00
|
|
|
"--with-libjson=${json_c.dev}"
|
2018-07-15 22:02:26 +02:00
|
|
|
"--with-system-libmspack"
|
2015-06-07 14:34:43 +02:00
|
|
|
"--enable-milter"
|
2020-11-26 21:17:17 +01:00
|
|
|
"--disable-unrar" # disable unrar because it's non-free and requires some extra patching to work properly
|
|
|
|
"--enable-check"
|
2021-01-15 10:19:50 +01:00
|
|
|
] ++ lib.optional stdenv.isLinux
|
2020-06-15 12:09:27 +02:00
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd";
|
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
|
|
|
|
'';
|
|
|
|
|
2020-11-26 21:17:17 +01:00
|
|
|
# Only required for the unit tests
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +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;
|
2019-08-20 19:36:05 +02:00
|
|
|
maintainers = with maintainers; [ phreedom robberer qknight fpletz globin ];
|
2020-06-15 12:09:27 +02:00
|
|
|
platforms = platforms.unix;
|
2012-07-23 16:21:25 +02:00
|
|
|
};
|
|
|
|
}
|