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 20:02:26 +00:00
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
, libmspack, systemd, Foundation, json_c, check
2018-01-26 15:02:29 +00:00
}:
2012-07-23 14:21:25 +00:00
stdenv.mkDerivation rec {
pname = "clamav";
2021-02-07 04:29:40 +00:00
version = "0.103.1";
2012-07-23 14:21:25 +00:00
src = fetchurl {
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
2021-02-07 04:29:40 +00:00
sha256 = "sha256-cwjEe4myaK87nzYUBSiSekn/PmM6nJwKrCcS2BBW4lc=";
2012-07-23 14:21:25 +00:00
};
# don't install sample config files into the absolute sysconfdir folder
postPatch = ''
substituteInPlace Makefile.in --replace ' etc ' ' '
'';
enableParallelBuilding = true;
2020-12-08 02:13:01 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [
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
configureFlags = [
2018-07-15 20:02:26 +00:00
"--libdir=$(out)/lib"
"--sysconfdir=/etc/clamav"
2017-08-26 09:22:15 +00:00
"--disable-llvm" # enabling breaks the build at the moment
2018-01-26 15:02:29 +00: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 20:02:26 +00: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 09:19:50 +00:00
] ++ lib.optional stdenv.isLinux
2020-06-15 10:09:27 +00:00
"--with-systemdsystemunitdir=$(out)/lib/systemd";
2012-07-23 14:21:25 +00: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 14:21:25 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ phreedom robberer qknight fpletz globin ];
2020-06-15 10:09:27 +00:00
platforms = platforms.unix;
2012-07-23 14:21:25 +00:00
};
}