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

32 lines
981 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl }:
2012-07-23 16:21:25 +02:00
stdenv.mkDerivation rec {
name = "clamav-${version}";
2015-02-06 08:56:38 +01:00
version = "0.98.6";
2012-07-23 16:21:25 +02:00
src = fetchurl {
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
2015-02-06 08:56:38 +01:00
sha256 = "0l99a0shgzpl8rvrrgbm1ki2zxlb7g1n82bhq7f2snj4amfj94b5";
2012-07-23 16:21:25 +02:00
};
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv ];
2012-07-23 16:21:25 +02:00
configureFlags = [
"--with-zlib=${zlib}"
"--with-libbz2-prefix=${bzip2}"
"--with-iconv-dir=${libiconv}"
2014-09-01 09:44:00 +02:00
"--with-xml=${libxml2}"
"--with-openssl=${openssl}"
"--with-libncurses-prefix=${ncurses}"
"--with-libcurl=${curl}"
"--disable-clamav"
];
2012-07-23 16:21:25 +02:00
meta = with stdenv.lib; {
homepage = http://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;
2014-09-18 08:08:48 +02:00
maintainers = [ maintainers.phreedom maintainers.robberer ];
2012-07-23 16:21:25 +02:00
platforms = platforms.linux;
};
}