mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
|
, libmspack, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clamav";
|
|
version = "0.102.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz";
|
|
sha256 = "1mpdgn3isz26hd1j6p8lcb76v8hjs54k1wb655rnil4hv78aig8d";
|
|
};
|
|
|
|
# don't install sample config files into the absolute sysconfdir folder
|
|
postPatch = ''
|
|
substituteInPlace Makefile.in --replace ' etc ' ' '
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack
|
|
systemd
|
|
];
|
|
|
|
configureFlags = [
|
|
"--libdir=$(out)/lib"
|
|
"--sysconfdir=/etc/clamav"
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd"
|
|
"--disable-llvm" # enabling breaks the build at the moment
|
|
"--with-zlib=${zlib.dev}"
|
|
"--with-xml=${libxml2.dev}"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--with-libcurl=${curl.dev}"
|
|
"--with-system-libmspack"
|
|
"--enable-milter"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir $out/etc
|
|
cp etc/*.sample $out/etc
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.clamav.net;
|
|
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ phreedom robberer qknight fpletz globin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|