pkgs/applications: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-17 09:09:27 +07:00
committed by Jonathan Ringer
parent 47e997598c
commit 5d566c43b4
371 changed files with 755 additions and 755 deletions

View File

@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, rustPlatform, pkgconfig, openssl }:
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
rustPlatform.buildRustPackage rec {
pname = "cloud-hypervisor";
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "h2aWWjycTm84TS89/vhqnAvwOqeeSDtvvCt+Is6I0eI=";
};
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoPatches = [ ./cargo-lock-vendor-fix.patch ];