Merge pull request #175443 from loicreynier/fix-gh-cal

gh-cal: fix pkg-config
This commit is contained in:
Artturi 2022-05-30 12:24:25 +03:00 committed by GitHub
commit cb2c4f77af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
, stdenv
, fetchCrate
, rustPlatform
, pkgconfig
, pkg-config
, openssl
, Security
}:
@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-73gqk0DjhaLGIEP5VQQlubPomxHQyg4RnY5XTgE7msQ=";
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {