2012-07-23 16:21:25 +02:00
|
|
|
{ stdenv, fetchurl, zlib, bzip2, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clamav-${version}";
|
2014-01-23 19:55:24 +01:00
|
|
|
version = "0.98.1";
|
2012-07-23 16:21:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 01:48:32 +02:00
|
|
|
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
|
2014-01-23 19:55:24 +01:00
|
|
|
sha256 = "1p13n8g3b88cxwxj07if9z1d2cav1ib94v6cq4r4bpacfd6yix9m";
|
2012-07-23 16:21:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib bzip2 libiconv ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-zlib=${zlib}"
|
|
|
|
"--with-libbz2-prefix=${bzip2}"
|
|
|
|
"--with-iconv-dir=${libiconv}"
|
|
|
|
"--disable-clamav" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.clamav.net;
|
2013-10-05 16:22:46 +02:00
|
|
|
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 = [ maintainers.phreedom ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|