From c97c44cbd0da5487d1065f8ca115f4cb4e47ccf9 Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Wed, 24 Apr 2024 18:45:47 -0300 Subject: [PATCH] flake: fix nix develop on darwin --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 2a8622439..5ff2397ba 100644 --- a/flake.nix +++ b/flake.nix @@ -46,8 +46,8 @@ packages = with pkgs; [ rustc cargo ]; buildInputs = (lib.optionals pkgs.stdenv.isDarwin [ - pkgs.Security - pkgs.SystemConfiguration + pkgs.darwin.apple_sdk.frameworks.Security + pkgs.darwin.apple_sdk.frameworks.SystemConfiguration ]) ++ [ pkgs.openssl ];