bacon: migrate to new apple sdk structure

This commit is contained in:
Sarah Clark 2024-11-06 14:06:56 -08:00
parent 409fcceb99
commit 852656d6b3

View File

@ -3,7 +3,6 @@
stdenv,
rustPlatform,
fetchFromGitHub,
darwin,
versionCheckHook,
nix-update-script,
}:
@ -21,13 +20,7 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-rlWNrkzUDs3rbQ5ZV4fKU/EKEy4fVbxEP0+wNwXi7Ag=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
nativeInstallCheckInputs = [
versionCheckHook
];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;