From 3e3b771b2e54d652dbe4e8cadd82804786072e20 Mon Sep 17 00:00:00 2001 From: "O. C. Taskin" <42993892+octvs@users.noreply.github.com> Date: Wed, 28 Feb 2024 04:23:17 +0100 Subject: [PATCH] Rename Nix flake build input from `pkgconfig` to `pkg-config` (#203) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a0a821c..35ab017 100644 --- a/flake.nix +++ b/flake.nix @@ -29,7 +29,7 @@ "modalkit-0.0.16" = "sha256-mjAD1v0r2+SzPdoB2wZ/5iJ1NZK+3OSvCYcUZ5Ef38Y="; }; }; - nativeBuildInputs = [ pkgs.pkgconfig ]; + nativeBuildInputs = [ pkgs.pkg-config ]; buildInputs = [ pkgs.openssl ] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [ AppKit Security ]); };