From 5b5a85fe33b0c1b2c661b2eb6f25c50ccce1fb36 Mon Sep 17 00:00:00 2001 From: Georges Dubus Date: Thu, 29 Sep 2022 11:04:50 +0200 Subject: [PATCH] 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). --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 80100ba49..1c9183849 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]