From 6c0d126f4b1c4ffd3c60ee009d47237d25c98c35 Mon Sep 17 00:00:00 2001 From: Gabor Pihaj Date: Sat, 25 May 2024 21:38:01 +0100 Subject: [PATCH] Add missing darwin build dependency (#286) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ec4a5b3..43dfd3b 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin - (with darwin.apple_sdk.frameworks; [ AppKit Security ]); + (with darwin.apple_sdk.frameworks; [ AppKit Security Cocoa]); }; devShell = mkShell {