summary refs log tree commit diff
path: root/pkgs/tools/security/clamav
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-12-08 03:13:01 +0100
committerGitHub <noreply@github.com>2020-12-08 03:13:01 +0100
commit47134948c81280a1dae2181a30cb087347e79ca0 (patch)
tree2dcabe915295aa7ce660689317b93b8e7fe094c5 /pkgs/tools/security/clamav
parentb7bdab77eb96fa0548ca23817bf4df44b7318e84 (diff)
downloadnixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar.gz
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar.bz2
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar.lz
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar.xz
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.tar.zst
nixpkgs-47134948c81280a1dae2181a30cb087347e79ca0.zip
Apply suggestions from code review
Diffstat (limited to 'pkgs/tools/security/clamav')
-rw-r--r--pkgs/tools/security/clamav/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/clamav/default.nix b/pkgs/tools/security/clamav/default.nix
index d0c9003f1ba..e3c57cbc9e9 100644
--- a/pkgs/tools/security/clamav/default.nix
+++ b/pkgs/tools/security/clamav/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig
+{ stdenv, fetchurl, pkg-config
 , zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
 , libmspack, systemd, Foundation, json_c, check
 }:
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   '';
 
   enableParallelBuilding = true;
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [
     zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre2 libmspack json_c check
   ] ++ stdenv.lib.optional stdenv.isLinux systemd