summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/clamav
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-11-15 02:02:25 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-11-15 02:06:02 +0100
commit02e9c88d778b06909d4ef5a2e7e417aaeecb89a7 (patch)
tree6200bddf9a111d3abf00d1625b1bfd3a6cc6ec8a /pkgs/tools/security/clamav
parent999ac3056d81dab04e9406771a73753d47985a3a (diff)
clamav: don't bundle freshclam config with package
Building clamav is expensive due to the bundled llvm. Closes #20304.
Diffstat (limited to 'pkgs/tools/security/clamav')
-rw-r--r--pkgs/tools/security/clamav/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/security/clamav/default.nix b/pkgs/tools/security/clamav/default.nix
index 0cb34b2e73c9..7473f056ce97 100644
--- a/pkgs/tools/security/clamav/default.nix
+++ b/pkgs/tools/security/clamav/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
-, libmilter, pcre, freshclamConf ? null }:
+, libmilter, pcre }:
stdenv.mkDerivation rec {
name = "clamav-${version}";
@@ -10,7 +10,9 @@ stdenv.mkDerivation rec {
sha256 = "0yh2q318bnmf2152g2h1yvzgqbswn0wvbzb8p4kf7v057shxcyqn";
};
- buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
+ buildInputs = [
+ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre
+ ];
configureFlags = [
"--with-zlib=${zlib.dev}"
@@ -22,11 +24,8 @@ stdenv.mkDerivation rec {
"--with-libcurl=${curl.dev}"
"--with-pcre=${pcre.dev}"
"--enable-milter"
- "--disable-clamav"
];
- fixupPhase = if (freshclamConf != null) then ''echo "${freshclamConf}" > $out/etc/freshclam.conf'' else "";
-
meta = with stdenv.lib; {
homepage = http://www.clamav.net;
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";