From 8ef836faa28d8b94cc3d7eb715fc0e26820c9826 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Mon, 18 Nov 2024 14:08:43 -0500 Subject: [PATCH] fix: git should be a nativeBuildInput and not buildInput --- nix/ext/wrappers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/ext/wrappers/default.nix b/nix/ext/wrappers/default.nix index 85e00aff3..e2e5ca767 100644 --- a/nix/ext/wrappers/default.nix +++ b/nix/ext/wrappers/default.nix @@ -29,8 +29,8 @@ buildPgrxExtension_0_12_6 rec { hash = "sha256-CkoNMoh40zbQL4V49ZNYgv3JjoNWjODtTpHn+L8DdZA="; }; - nativeBuildInputs = [ pkg-config cargo ]; - buildInputs = [ openssl postgresql git ] ++ lib.optionals (stdenv.isDarwin) [ + nativeBuildInputs = [ pkg-config cargo git ]; + buildInputs = [ openssl postgresql ] ++ lib.optionals (stdenv.isDarwin) [ darwin.apple_sdk.frameworks.CoreFoundation darwin.apple_sdk.frameworks.Security darwin.apple_sdk.frameworks.SystemConfiguration