2022-05-13 10:33:40 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, cmake
|
2018-07-15 20:02:26 +00:00
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
2020-11-26 20:17:17 +00:00
|
|
|
, libmspack, systemd, Foundation, json_c, check
|
2022-05-13 10:33:40 +00:00
|
|
|
, rustc, rust-bindgen, rustfmt, cargo, python3
|
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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "clamav";
|
2023-02-17 08:21:40 +00:00
|
|
|
version = "1.0.1";
|
2012-07-23 14:21:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
|
2023-02-17 08:21:40 +00:00
|
|
|
hash = "sha256-CHLcG4L/TNfo5DI/r17kGh9mroCGXQVCkIW5RjVdhu4=";
|
2012-07-23 14:21:25 +00:00
|
|
|
};
|
|
|
|
|
2022-05-19 12:41:51 +00:00
|
|
|
patches = [
|
|
|
|
# Flaky test, remove this when https://github.com/Cisco-Talos/clamav/issues/343 is fixed
|
|
|
|
./remove-freshclam-test.patch
|
|
|
|
./sample-cofiguration-file-install-location.patch
|
|
|
|
];
|
2016-11-15 03:40:33 +00:00
|
|
|
|
2020-11-26 20:17:17 +00:00
|
|
|
enableParallelBuilding = true;
|
2022-05-13 10:33:40 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config rustc rust-bindgen rustfmt cargo python3 ];
|
2016-11-15 01:02:25 +00:00
|
|
|
buildInputs = [
|
2020-11-26 20:17:17 +00:00
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack json_c check
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux systemd
|
|
|
|
++ lib.optional stdenv.isDarwin Foundation;
|
2012-07-23 14:21:25 +00:00
|
|
|
|
2022-05-13 10:33:40 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DSYSTEMD_UNIT_DIR=${placeholder "out"}/lib/systemd"
|
2022-05-19 12:41:51 +00:00
|
|
|
"-DAPP_CONFIG_DIRECTORY=/etc/clamav"
|
2022-05-13 10:33:40 +00:00
|
|
|
];
|
2012-07-23 14:21:25 +00:00
|
|
|
|
2020-11-26 20:17:17 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +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;
|
2022-08-03 12:13:56 +00:00
|
|
|
maintainers = with maintainers; [ robberer qknight globin ];
|
2020-06-15 10:09:27 +00:00
|
|
|
platforms = platforms.unix;
|
2012-07-23 14:21:25 +00:00
|
|
|
};
|
|
|
|
}
|