pkgs/applications: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-16 23:49:59 -08:00
committed by Jonathan Ringer
parent 47e997598c
commit 5d566c43b4
371 changed files with 755 additions and 755 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
{ lib, stdenv, fetchurl, libX11, libXt, libXext, libXpm, imake, gccmakedep
, svgSupport ? false, librsvg, glib, gdk-pixbuf, pkgconfig
, svgSupport ? false, librsvg, glib, gdk-pixbuf, pkg-config
}:
assert svgSupport ->
librsvg != null && glib != null && gdk-pixbuf != null && pkgconfig != null;
librsvg != null && glib != null && gdk-pixbuf != null && pkg-config != null;
stdenv.mkDerivation rec {
name = "xxkb-1.11.1";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ imake gccmakedep ];
buildInputs = [
libX11 libXt libXext libXpm
] ++ lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkgconfig ];
] ++ lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkg-config ];
outputs = [ "out" "man" ];