From 5f557127d4a12b8917421f76d040dd867a9ee083 Mon Sep 17 00:00:00 2001 From: Tyler Rhodes Date: Tue, 28 Jan 2025 09:53:57 -0600 Subject: [PATCH] Add extra buildInputs needed to use nix-shell on mac. --- shell.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell.nix b/shell.nix index 04f44c2a0ff..ee748fc8b6b 100644 --- a/shell.nix +++ b/shell.nix @@ -8,4 +8,9 @@ pkgs.mkShell { rustup protobuf ]; + buildInputs = with pkgs; lib.optionals pkgs.stdenv.isDarwin [ + pkgs.libiconv + pkgs.darwin.apple_sdk.frameworks.DiskArbitration + pkgs.darwin.apple_sdk.frameworks.Foundation + ]; }