pkgs/shells: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob 2021-01-17 09:15:29 +07:00 committed by Jonathan Ringer
parent d13840759c
commit 82ba45d59e
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkgconfig,
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config,
libtool, check, bison, git, gperf,
perl, texinfo, help2man, gettext, ncurses
}:
@ -17,7 +17,7 @@ stdenv.mkDerivation {
patches = [ ./glibc-2.26.patch ];
nativeBuildInputs = [ autoconf automake pkgconfig libtool check
nativeBuildInputs = [ autoconf automake pkg-config libtool check
bison git gettext gperf perl texinfo help2man ncurses
];

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }:
stdenv.mkDerivation rec {
pname = "jush";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ editline ];

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig, readline }:
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, readline }:
stdenv.mkDerivation rec {
pname = "mrsh";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "08gak5261d4sd6b2w2kscmdwa4gwcp5drgfyb3swyrj9cl0nlcbn";
};
nativeBuildInputs = [ meson ninja pkgconfig ];
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ readline ];
doCheck = true;