2018-01-26 15:02:29 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig
|
|
|
|
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre
|
|
|
|
}:
|
2015-09-29 19:08:53 +01:00
|
|
|
|
2012-07-23 15:21:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2018-03-13 18:55:22 +00:00
|
|
|
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";
|
2018-03-13 18:55:22 +00:00
|
|
|
sha256 = "0q94iwi729id9pyc72w6zlllbaz37qvpi6gc51g2x3fy7ckw6anp";
|
2012-07-23 15:21:25 +01:00
|
|
|
};
|
|
|
|
|
2016-11-15 03:40:33 +00: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 ];
|
2016-11-15 01:02:25 +00:00
|
|
|
buildInputs = [
|
|
|
|
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre
|
|
|
|
];
|
2012-07-23 15:21:25 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2016-11-15 03:40:33 +00:00
|
|
|
"--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}"
|
2016-08-30 00:57:21 +01:00
|
|
|
"--with-xml=${libxml2.dev}"
|
2016-04-16 18:44:32 +01:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2016-04-16 17:47:59 +01:00
|
|
|
"--with-libcurl=${curl.dev}"
|
2015-06-07 13:34:43 +01:00
|
|
|
"--enable-milter"
|
2014-11-26 23:16:50 +00:00
|
|
|
];
|
2012-07-23 15:21:25 +01:00
|
|
|
|
2016-11-15 03:40:33 +00: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;
|
2013-10-05 15:22:46 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|