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,4 +1,4 @@
{ lib, stdenv, fetchurl, pkgconfig, perl, util-linux, keyutils, nss, nspr, python2, pam, enablePython ? false
{ lib, stdenv, fetchurl, pkg-config, perl, util-linux, keyutils, nss, nspr, python2, pam, enablePython ? false
, intltool, makeWrapper, coreutils, bash, gettext, cryptsetup, lvm2, rsync, which, lsof }:
stdenv.mkDerivation rec {
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap" ];
nativeBuildInputs = [ pkgconfig ]
nativeBuildInputs = [ pkg-config ]
# if python2 support is requested, it is needed at builtime as well as runtime.
++ lib.optionals (enablePython) [ python2 ]
;