pkgs/tools: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-17 10:51:22 +07:00
committed by Jonathan Ringer
parent fce00d15c2
commit 76f93cc731
251 changed files with 500 additions and 500 deletions

View File

@@ -1,5 +1,5 @@
{ stdenv, lib, fetchFromGitHub, glib, readline
, bison, flex, pkgconfig, autoreconfHook, libxslt, makeWrapper
, bison, flex, pkg-config, autoreconfHook, libxslt, makeWrapper
, txt2man, which
# withUi currently doesn't work. It compiles but fails to run.
, withUi ? false, gtk2, gnome2
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
configureFlags = [ "--disable-scrollkeeper" ];
nativeBuildInputs = [
pkgconfig bison flex autoreconfHook txt2man which
pkg-config bison flex autoreconfHook txt2man which
] ++ lib.optional withUi libxslt;
buildInputs = [ glib readline ] ++ lib.optionals withUi uiDeps;