1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 16:46:09 +00:00
nixpkgs/pkgs/tools/security/clamav/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
, libmilter, pcre }:
2012-07-23 15:21:25 +01:00
stdenv.mkDerivation rec {
name = "clamav-${version}";
2016-07-28 22:36:38 +01:00
version = "0.99.2";
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";
sha256 = "0yh2q318bnmf2152g2h1yvzgqbswn0wvbzb8p4kf7v057shxcyqn";
2012-07-23 15:21:25 +01:00
};
# don't install sample config files into the absolute sysconfdir folder
postPatch = ''
substituteInPlace Makefile.in --replace ' etc ' ' '
'';
buildInputs = [
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre
];
2012-07-23 15:21:25 +01:00
configureFlags = [
"--sysconfdir=/etc/clamav"
"--with-zlib=${zlib.dev}"
"--with-libbz2-prefix=${bzip2.dev}"
"--with-iconv-dir=${libiconv}"
"--with-xml=${libxml2.dev}"
"--with-openssl=${openssl.dev}"
"--with-libncurses-prefix=${ncurses.dev}"
"--with-libcurl=${curl.dev}"
"--with-pcre=${pcre.dev}"
"--enable-milter"
];
2012-07-23 15:21:25 +01:00
postInstall = ''
mkdir $out/etc
cp etc/*.sample $out/etc
'';
2012-07-23 15:21:25 +01: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 15:21:25 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ phreedom robberer qknight ];
2012-07-23 15:21:25 +01:00
platforms = platforms.linux;
};
}