From ab614f3018999d23da2b1ce6bb0ba43e80e41b43 Mon Sep 17 00:00:00 2001 From: kaichao Date: Sat, 24 Oct 2020 17:50:25 +0800 Subject: [PATCH] fix darwin (#7385) --- substrate/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/substrate/shell.nix b/substrate/shell.nix index 9d660df4a1..85bdce797c 100644 --- a/substrate/shell.nix +++ b/substrate/shell.nix @@ -15,6 +15,8 @@ with nixpkgs; pkgs.mkShell { cmake pkg-config rust-nightly + ] ++ stdenv.lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security ]; LIBCLANG_PATH = "${llvmPackages.libclang}/lib";