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

31 lines
979 B
Nix
Raw Normal View History

2014-09-01 07:44:00 +00:00
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl }:
2012-07-23 14:21:25 +00:00
stdenv.mkDerivation rec {
name = "clamav-${version}";
2014-09-01 07:44:00 +00:00
version = "0.98.4";
2012-07-23 14:21:25 +00:00
src = fetchurl {
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
2014-09-01 07:44:00 +00:00
sha256 = "071yzamalj3rf7kl2jvc35ipnk1imdkq5ylbb8whyxfgmd3nf06k";
2012-07-23 14:21:25 +00:00
};
2014-09-01 07:44:00 +00:00
buildInputs = [ zlib bzip2 libiconv libxml2 openssl ncurses curl ];
2012-07-23 14:21:25 +00:00
configureFlags = [
"--with-zlib=${zlib}"
"--with-libbz2-prefix=${bzip2}"
"--with-iconv-dir=${libiconv}"
2014-09-01 07:44:00 +00:00
"--with-xml=${libxml2}"
"--with-openssl=${openssl}"
"--with-libncurses-prefix=${ncurses}"
"--with-libcurl=${curl}"
2012-07-23 14:21:25 +00: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 14:21:25 +00:00
license = licenses.gpl2;
2014-09-18 06:08:48 +00:00
maintainers = [ maintainers.phreedom maintainers.robberer ];
2012-07-23 14:21:25 +00:00
platforms = platforms.linux;
};
}