From 2367aa7eab21a6b829effafeb2eb839b8d2d5fd7 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 8 May 2023 12:34:31 -0400 Subject: [PATCH] cargo-raze: fix build on darwin --- pkgs/development/tools/rust/cargo-raze/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/rust/cargo-raze/default.nix b/pkgs/development/tools/rust/cargo-raze/default.nix index 7b33d810f3c1..12d8ac1b5ad8 100644 --- a/pkgs/development/tools/rust/cargo-raze/default.nix +++ b/pkgs/development/tools/rust/cargo-raze/default.nix @@ -31,6 +31,8 @@ rustPlatform.buildRustPackage rec { ] ++ lib.optional stdenv.isDarwin Security; + __darwinAllowLocalNetworking = true; + meta = with lib; { description = "Generate Bazel BUILD files from Cargo dependencies"; homepage = "https://github.com/google/cargo-raze";