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

52 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
2018-07-15 22:02:26 +02:00
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
2020-06-15 12:09:27 +02:00
, libmspack, systemd, Foundation
2018-01-26 16:02:29 +01:00
}:
2012-07-23 16:21:25 +02:00
stdenv.mkDerivation rec {
pname = "clamav";
2020-07-20 23:16:30 +02:00
version = "0.102.4";
2012-07-23 16:21:25 +02:00
src = fetchurl {
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
2020-07-20 23:16:30 +02:00
sha256 = "06rrzyrhnr0rswryijpbbzywr6387rv8qjq8sb8cl3h2d1m45ggf";
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 ' ' '
'';
2018-01-26 16:02:29 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
2018-07-15 22:02:26 +02:00
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack
2020-06-15 12:09:27 +02:00
] ++ stdenv.lib.optional stdenv.isLinux systemd
++ stdenv.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}"
2018-07-15 22:02:26 +02:00
"--with-system-libmspack"
"--enable-milter"
2020-06-15 12:09:27 +02:00
] ++ stdenv.lib.optional stdenv.isLinux
"--with-systemdsystemunitdir=$(out)/lib/systemd";
2012-07-23 16:21:25 +02:00
postInstall = ''
mkdir $out/etc
cp etc/*.sample $out/etc
'';
2012-07-23 16:21:25 +02:00
meta = with stdenv.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;
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
};
}