Skip to content

Commit

Permalink
fix: git should be a nativeBuildInput and not buildInput
Browse files Browse the repository at this point in the history
  • Loading branch information
samrose committed Nov 18, 2024
1 parent 7acd1ad commit 8ef836f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/ext/wrappers/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8ef836f

Please sign in to comment.