nixpkgs/pkgs/tools/security/clamav/default.nix

60 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config
2018-07-15 22:02:26 +02:00
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
, libmspack, systemd, Foundation, json_c, check
2018-01-26 16:02:29 +01:00
}:
2012-07-23 16:21:25 +02:00
stdenv.mkDerivation rec {
pname = "clamav";
2022-01-14 18:00:35 +01:00
version = "0.103.5";
2012-07-23 16:21:25 +02:00
src = fetchurl {
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
2022-01-14 18:00:35 +01:00
sha256 = "sha256-HnSx4dKoqQVkScMT9Ippg7nVug1vte8LK+atPIQaVCY=";
2012-07-23 16:21:25 +02:00
};
# don't install sample config files into the absolute sysconfdir folder
postPatch = ''
substituteInPlace Makefile.in --replace ' etc ' ' '
'';
enableParallelBuilding = true;
2020-12-08 03:13:01 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [
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"
"--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}"
"--with-xml=${libxml2.dev}"
"--with-openssl=${openssl.dev}"
"--with-libcurl=${curl.dev}"
"--with-libjson=${json_c.dev}"
2018-07-15 22:02:26 +02:00
"--with-system-libmspack"
"--enable-milter"
"--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
postInstall = ''
mkdir $out/etc
cp etc/*.sample $out/etc
'';
# Only required for the unit tests
hardeningDisable = [ "format" ];
doCheck = true;
meta = with lib; {
homepage = "https://www.clamav.net";
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
2012-07-23 16:21:25 +02:00
license = licenses.gpl2;
2021-12-18 10:25:46 +01:00
maintainers = with maintainers; [ robberer qknight fpletz globin ];
2020-06-15 12:09:27 +02:00
platforms = platforms.unix;
2012-07-23 16:21:25 +02:00
};
}