dprint: switch to the new darwin sdk pattern

This commit is contained in:
Kenichi Kamiya 2024-11-10 20:51:06 +09:00
parent 4155ccc122
commit fe3ce419eb
No known key found for this signature in database
GPG Key ID: 9BE4016A38165CCB
2 changed files with 1 additions and 10 deletions

View File

@ -3,8 +3,6 @@
stdenv,
fetchCrate,
rustPlatform,
CoreFoundation,
Security,
testers,
nix-update-script,
dprint,
@ -21,11 +19,6 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-EliiKKRt+7IMPR8+0OWn+YKizPT9SZjVALAdbwi301w=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
CoreFoundation
Security
];
# Tests fail because they expect a test WASM plugin. Tests already run for
# every commit upstream on GitHub Actions
doCheck = false;

View File

@ -8231,9 +8231,7 @@ with pkgs;
dbt = with python3Packages; toPythonApplication dbt-core;
dprint = callPackage ../development/tools/dprint {
inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Security;
};
dprint = callPackage ../development/tools/dprint { };
devbox = callPackage ../development/tools/devbox { buildGoModule = buildGo123Module; };