From fcaf399ea17076bd77088afbfc9ebf7fcc567903 Mon Sep 17 00:00:00 2001 From: Jean SIMARD Date: Thu, 16 Nov 2023 12:05:57 +0100 Subject: [PATCH] dev: add additional needed dependencies for Mac OS --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 3cdd978322d..afc7b63e6b0 100644 --- a/flake.nix +++ b/flake.nix @@ -119,6 +119,10 @@ # Nix formatter alejandra.defaultPackage.${system} ] + ++ lib.optionals stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [ + CoreFoundation + SystemConfiguration + ]) ++ scriptBins; RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";