gix: Move build time input to nativeBuildInputs

This commit is contained in:
sbatial 2024-02-20 18:42:11 +01:00
parent 9c9de33ff2
commit 9f94cdd5f6

View File

@ -29,9 +29,9 @@ in rustPlatform.buildRustPackage rec {
cargoHash = "sha256-JOl/hhyuc6vqeK6/oXXMB3fGRapBsuOTaUG+BQ9QSnk=";
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake pkg-config installShellFiles ];
buildInputs = [ curl installShellFiles ] ++ (if stdenv.isDarwin
buildInputs = [ curl ] ++ (if stdenv.isDarwin
then [ libiconv Security SystemConfiguration ]
else [ openssl ]);