about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 09:09:27 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 23:49:59 -0800
commit5d566c43b4877ad32fb096e4d606b57eaa6dfe37 (patch)
treee7cc057fed0ce2eb44ae2978be5b4e64c8d41dcd /pkgs/applications/networking/instant-messengers/bitlbee
parent47e997598cd0e51f4a0071bb4e90cb2bdcc38dde (diff)
pkgs/applications: pkgconfig -> pkg-config
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/bitlbee')
-rw-r--r--pkgs/applications/networking/instant-messengers/bitlbee/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
index 022fde67365c4..1a83a04a1fa8b 100644
--- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkgconfig, check, libotr, python
+{ lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python
 , enableLibPurple ? false, pidgin ? null
 , enablePam ? false, pam ? null
 }:
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "0zhhcbcr59sx9h4maf8zamzv2waya7sbsl7w74gbyilvy93dw5cz";
   };
 
-  nativeBuildInputs = [ pkgconfig ] ++ optional doCheck check;
+  nativeBuildInputs = [ pkg-config ] ++ optional doCheck check;
 
   buildInputs = [ gnutls libotr python ]
     ++ optional enableLibPurple pidgin