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

34 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, bzip2, libiconvOrNull, 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 ]
++ stdenv.lib.optional (libiconvOrNull != null) libiconvOrNull;
2012-07-23 16:21:25 +02:00
configureFlags = [
"--with-zlib=${zlib}"
"--with-libbz2-prefix=${bzip2}"
] ++ (stdenv.lib.optional (libiconvOrNull != null)
"--with-iconv-dir=${libiconvOrNull}")
++ [
2014-09-01 09:44:00 +02:00
"--with-xml=${libxml2}"
"--with-openssl=${openssl}"
"--with-libncurses-prefix=${ncurses}"
"--with-libcurl=${curl}"
2012-07-23 16:21:25 +02:00
"--disable-clamav" ];
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;
};
}