Change pkgconfig to pkg-config

`pkgconfig` has been a alias to `pkg-config` since 2021-01-18, and has started being an error since 2022-09-24.

This commit makes recent nixpkgs versions work, but might make version older than January 2021 break (which is probably not an issue).
This commit is contained in:
Georges Dubus 2022-09-29 11:04:50 +02:00 committed by Martin von Zweigbergk
parent 89680b8df9
commit 5b5a85fe33

View File

@ -21,7 +21,7 @@
, lib
, fetchFromGitHub
, rustPlatform
, pkgconfig
, pkg-config
, openssl
, dbus
, sqlite
@ -45,7 +45,7 @@
lockFile = "${self}/Cargo.lock";
};
nativeBuildInputs = [
pkgconfig gzip makeWrapper
pkg-config gzip makeWrapper
installShellFiles
];
buildInputs = [ openssl dbus sqlite ]