From 7f93709eb2c9425ed94ad9e33ae3df803bf67f14 Mon Sep 17 00:00:00 2001 From: Familex Date: Fri, 23 May 2025 21:46:37 +0300 Subject: [PATCH] Fix nix-shell: move pkg-config to nativeBuildInputs --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index b93156c..16a2476 100644 --- a/shell.nix +++ b/shell.nix @@ -11,10 +11,10 @@ pkgs.callPackage ( nativeBuildInputs = [ rustup rustPlatform.bindgenHook + pkgs.pkg-config ]; buildInputs = with pkgs; [ openssl - pkg-config ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];