dprint: fix build on darwin

https://github.com/dprint/dprint/compare/0.40.2...0.41.0

Build on darwin is broken with following errors since #260107

```
      sysinfo:🍎:disk::get_disks::hf0f5e9ca54811ca0 in libsysinfo-2ada6af970649dda.rlib(sysinfo-2ada6af970649dda.sysinfo.7c30ee2e47e3fa9d-cgu.12.rcgu.o)
  "_kCFURLVolumeAvailableCapacityKey", referenced from:
      _$LT$sysinfo..apple..disk..Disk$u20$as$u20$sysinfo..traits..DiskExt$GT$::refresh::h54fb3881d5127506 in libsysinfo-2ada6af970649dda.rlib(sysinfo-2ada6af970649dda.sysinfo.7c30ee2e47e3fa9d-cgu.12.rcgu.o)
      sysinfo:🍎:disk::get_disks::hf0f5e9ca54811ca0 in libsysinfo-2ada6af970649dda.rlib(sysinfo-2ada6af970649dda.sysinfo.7c30ee2e47e3fa9d-cgu.12.rcgu.o)
ld: symbol(s) not found for architecture x86_64
clang-11: error: linker command failed with exit code 1 (use -v to see invocation)
```
This commit is contained in:
Kenichi Kamiya 2023-10-15 19:43:54 +09:00
parent ef63989be6
commit 57b5518727
No known key found for this signature in database
GPG Key ID: 9BE4016A38165CCB
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchCrate, rustPlatform, Security }: { lib, stdenv, fetchCrate, rustPlatform, CoreFoundation, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "dprint"; pname = "dprint";
@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-DauLzn+QkqTCPubrtasAZmD3DrIXkHk7zd8g589TCCk="; cargoHash = "sha256-DauLzn+QkqTCPubrtasAZmD3DrIXkHk7zd8g589TCCk=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ]; buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
# Tests fail because they expect a test WASM plugin. Tests already run for # Tests fail because they expect a test WASM plugin. Tests already run for
# every commit upstream on GitHub Actions # every commit upstream on GitHub Actions

View File

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