mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
pkgs/shells: pkgconfig -> pkg-config
This commit is contained in:
parent
d13840759c
commit
82ba45d59e
@ -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
|
||||
];
|
||||
|
||||
|
@ -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 ];
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user