pkgs/shells: pkgconfig -> pkg-config

authored by

Ben Siraphob and committed by
Jonathan Ringer
82ba45d5 d1384075

+6 -6
+2 -2
pkgs/shells/dgsh/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, 1 + { lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, 2 2 libtool, check, bison, git, gperf, 3 3 perl, texinfo, help2man, gettext, ncurses 4 4 }: ··· 17 17 18 18 patches = [ ./glibc-2.26.patch ]; 19 19 20 - nativeBuildInputs = [ autoconf automake pkgconfig libtool check 20 + nativeBuildInputs = [ autoconf automake pkg-config libtool check 21 21 bison git gettext gperf perl texinfo help2man ncurses 22 22 ]; 23 23
+2 -2
pkgs/shells/jush/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jush"; ··· 11 11 sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 16 16 buildInputs = [ editline ]; 17 17
+2 -2
pkgs/shells/mrsh/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig, readline }: 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, readline }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mrsh"; ··· 11 11 sha256 = "08gak5261d4sd6b2w2kscmdwa4gwcp5drgfyb3swyrj9cl0nlcbn"; 12 12 }; 13 13 14 - nativeBuildInputs = [ meson ninja pkgconfig ]; 14 + nativeBuildInputs = [ meson ninja pkg-config ]; 15 15 buildInputs = [ readline ]; 16 16 17 17 doCheck = true;