mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
207b086071
Fixes CVE-2024-20506 and CVE-2024-20505. Changes: https://blog.clamav.net/2024/09/clamav-141-132-107-and-010312-security.html
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, cmake
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
|
, libmspack, systemd, Foundation, json_c, check
|
|
, rustc, rust-bindgen, rustfmt, cargo, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clamav";
|
|
version = "1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
|
|
hash = "sha256-oxjngKw5prPWxGlxOC+W7d6Xzki442HrgOY0Fe1Batg=";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ cmake pkg-config rustc rust-bindgen rustfmt cargo python3 ];
|
|
buildInputs = [
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack json_c check
|
|
] ++ lib.optional stdenv.isLinux systemd
|
|
++ lib.optional stdenv.isDarwin Foundation;
|
|
|
|
cmakeFlags = [
|
|
"-DSYSTEMD_UNIT_DIR=${placeholder "out"}/lib/systemd"
|
|
"-DAPP_CONFIG_DIRECTORY=/etc/clamav"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
python3.pkgs.pytest
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.clamav.net";
|
|
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ robberer qknight globin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|