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

47 lines
1.3 KiB
Nix
Raw Normal View History

2018-01-26 15:02:29 +00:00
{ stdenv, fetchurl, fetchpatch, pkgconfig
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre
}:
2012-07-23 15:21:25 +01:00
stdenv.mkDerivation rec {
name = "clamav-${version}";
version = "0.99.4";
2012-07-23 15:21:25 +01:00
src = fetchurl {
2016-07-28 22:36:38 +01:00
url = "https://www.clamav.net/downloads/production/${name}.tar.gz";
sha256 = "0q94iwi729id9pyc72w6zlllbaz37qvpi6gc51g2x3fy7ckw6anp";
2012-07-23 15:21:25 +01:00
};
# don't install sample config files into the absolute sysconfdir folder
postPatch = ''
substituteInPlace Makefile.in --replace ' etc ' ' '
'';
2018-01-26 15:02:29 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre
];
2012-07-23 15:21:25 +01:00
configureFlags = [
"--sysconfdir=/etc/clamav"
2017-08-26 10:22:15 +01: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}"
"--enable-milter"
];
2012-07-23 15:21:25 +01:00
postInstall = ''
mkdir $out/etc
cp etc/*.sample $out/etc
'';
2012-07-23 15:21:25 +01:00
meta = with stdenv.lib; {
2018-05-01 04:03:23 +01:00
homepage = https://www.clamav.net;
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
2012-07-23 15:21:25 +01:00
license = licenses.gpl2;
2018-01-26 15:02:29 +00:00
maintainers = with maintainers; [ phreedom robberer qknight fpletz ];
2012-07-23 15:21:25 +01:00
platforms = platforms.linux;
};
}