about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-10-19 10:45:03 -0400
committerfigsoda <figsoda@pm.me>2023-10-19 10:45:03 -0400
commitdb70fd9812fa06932640b5d3930bfccffe4cbd52 (patch)
tree2a3c4455224afac6422d38daad72494897c7c9dc /pkgs/development/interpreters
parentaa07c55f9f5f75e453b1953544f8d5fc90c69943 (diff)
downloadnixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar.gz
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar.bz2
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar.lz
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar.xz
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.tar.zst
nixlib-db70fd9812fa06932640b5d3930bfccffe4cbd52.zip
rune: fix build on darwin
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/rune/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/rune/default.nix b/pkgs/development/interpreters/rune/default.nix
index a97ca54a26f7..510ab71bdc68 100644
--- a/pkgs/development/interpreters/rune/default.nix
+++ b/pkgs/development/interpreters/rune/default.nix
@@ -18,7 +18,8 @@ rustPlatform.buildRustPackage rec {
   cargoHash = "sha256-T6uYe+ZgXgsGN1714Ka+fxeVDoXgjVdfrrw5Rj/95cE=";
 
   buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
+    darwin.apple_sdk.frameworks.CoreServices
+    darwin.apple_sdk.frameworks.SystemConfiguration
   ];
 
   env = {