forked from mirrors/jj
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:
parent
89680b8df9
commit
5b5a85fe33
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkgconfig
|
, pkg-config
|
||||||
, openssl
|
, openssl
|
||||||
, dbus
|
, dbus
|
||||||
, sqlite
|
, sqlite
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
lockFile = "${self}/Cargo.lock";
|
lockFile = "${self}/Cargo.lock";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig gzip makeWrapper
|
pkg-config gzip makeWrapper
|
||||||
installShellFiles
|
installShellFiles
|
||||||
];
|
];
|
||||||
buildInputs = [ openssl dbus sqlite ]
|
buildInputs = [ openssl dbus sqlite ]
|
||||||
|
|
Loading…
Reference in a new issue