Skip to content

Commit

Permalink
fix: Fix nix build of bolt on macOS (Darwin) (#589)
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Flurry <NathanFlurry@users.noreply.github.com>
  • Loading branch information
MaxCWhitehead and NathanFlurry authored Apr 10, 2024
1 parent 1aa344e commit 3343b06
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion infra/nix/bolt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ rustPlatform.buildRustPackage rec {
buildInputs = with pkgs; [
pkg-config
openssl
];
] ++ (
pkgs.lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.SystemConfiguration
]
);
nativeBuildInputs = buildInputs;
doCheck = false;

Expand Down

0 comments on commit 3343b06

Please sign in to comment.