Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit c998d94

Browse files
committed
ci: fix mac build
1 parent c5774e2 commit c998d94

1 file changed

Lines changed: 19 additions & 13 deletions

File tree

dev/env/shell.nix

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,23 @@ let
44
in
55
pkgs.mkShell.override { stdenv = pkgs.clangStdenv; } {
66
RUST_SRC_PATH = "${toolchain}/lib/rustlib/src/rust/library";
7-
packages = with pkgs; [
8-
treefmt
9-
npins
10-
nixfmt-rfc-style
11-
shfmt
12-
taplo
13-
nodePackages.prettier
14-
atom.fenix.default.rustfmt
15-
toolchain
16-
mold
17-
cargo-insta
18-
cargo-shear
19-
];
7+
packages =
8+
with pkgs;
9+
[
10+
treefmt
11+
npins
12+
nixfmt-rfc-style
13+
shfmt
14+
taplo
15+
nodePackages.prettier
16+
atom.fenix.default.rustfmt
17+
toolchain
18+
mold
19+
cargo-insta
20+
cargo-shear
21+
]
22+
++ pkgs.lib.optionals pkgs.stdenv.isDarwin [
23+
darwin.apple_sdk.frameworks.SystemConfiguration
24+
libiconv
25+
];
2026
}

0 commit comments

Comments
 (0)