pkgs/applications: pkgconfig -> pkg-config
This commit is contained in:
committed by
Jonathan Ringer
parent
47e997598c
commit
5d566c43b4
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user