Skip to content

Commit 493d3b9

Browse files
committed
fix: maybe the last darwin fix?
1 parent 06b5a71 commit 493d3b9

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
mkdir artifacts/
3232
cp result/bin/* artifacts
3333
cd artifacts
34-
ls | xargs -i mv {} ${{matrix.target}}-{}
34+
ls | xargs -I{} mv {} ${{matrix.target}}-{}
3535
- uses: actions/upload-artifact@v4
3636
with:
3737
name: "${{ matrix.target }}-sync_dis_boi"

flake.nix

+1-10
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,7 @@
5353
pkgsStatic.openssl
5454
]
5555
else [openssl]
56-
)
57-
++ lib.optionals stdenv.isDarwin
58-
[
59-
buildPackages.darwin.apple_sdk.frameworks.CoreServices
60-
darwin.apple_sdk.frameworks.CoreServices
61-
buildPackages.darwin.apple_sdk.frameworks.SystemConfiguration
62-
darwin.apple_sdk.frameworks.SystemConfiguration
63-
];
56+
);
6457

6558
nativeBuildInputs = pkgs:
6659
with pkgs;
@@ -69,9 +62,7 @@
6962
]
7063
++ lib.optionals stdenv.isDarwin
7164
[
72-
buildPackages.darwin.apple_sdk.frameworks.CoreServices
7365
darwin.apple_sdk.frameworks.CoreServices
74-
buildPackages.darwin.apple_sdk.frameworks.SystemConfiguration
7566
darwin.apple_sdk.frameworks.SystemConfiguration
7667
];
7768

0 commit comments

Comments
 (0)