summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/amule
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 10:51:22 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 23:49:59 -0800
commit76f93cc7313a1c32f7d76cf07c154e7bcafe251c (patch)
tree5582d94717ada25917f084cdd550ec900e90e82c /pkgs/tools/networking/p2p/amule
parentfce00d15c2521710ac1043d6b5251803fb9a8808 (diff)
downloadnixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.gz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.bz2
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.lz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.xz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.zst
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.zip
pkgs/tools: pkgconfig -> pkg-config
Diffstat (limited to 'pkgs/tools/networking/p2p/amule')
-rw-r--r--pkgs/tools/networking/p2p/amule/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/p2p/amule/default.nix b/pkgs/tools/networking/p2p/amule/default.nix
index 6ecc9f7ba12..4ab93b7574a 100644
--- a/pkgs/tools/networking/p2p/amule/default.nix
+++ b/pkgs/tools/networking/p2p/amule/default.nix
@@ -3,7 +3,7 @@
 , httpServer ? false # build web interface for the daemon
 , client ? false # build amule remote gui
 , fetchFromGitHub, fetchpatch, stdenv, lib, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng ? null
-, autoreconfHook, pkgconfig, makeWrapper, libX11 ? null }:
+, autoreconfHook, pkg-config, makeWrapper, libX11 ? null }:
 
 assert httpServer -> libpng != null;
 assert client -> libX11 != null;
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
     popd >/dev/null
   '';
 
-  nativeBuildInputs = [ autoreconfHook gettext makeWrapper pkgconfig ];
+  nativeBuildInputs = [ autoreconfHook gettext makeWrapper pkg-config ];
 
   buildInputs = [
     zlib wxGTK perl cryptopp libupnp