about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-10-11 14:39:33 +0200
committerGitHub <noreply@github.com>2022-10-11 14:39:33 +0200
commite325d85f0fff8c3a478d8ef2426148e8118d3ecd (patch)
treec467ecd4d2a35262a5ab080e0c414c642bb42c63 /pkgs/servers
parentd5af38887fbf4652dd4992a4f9b58f774398cdef (diff)
parent097ec65336c63730bad1f7f72e45619183f29ddf (diff)
Merge pull request #195485 from 06kellyjac/teleport-fix
teleport: fix for darwin
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/teleport/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/teleport/default.nix b/pkgs/servers/teleport/default.nix
index cf6701fba687b..8cc67a1ff6ecd 100644
--- a/pkgs/servers/teleport/default.nix
+++ b/pkgs/servers/teleport/default.nix
@@ -5,6 +5,7 @@
 , makeWrapper
 , symlinkJoin
 , CoreFoundation
+, AppKit
 , libfido2
 , openssl
 , pkg-config
@@ -68,7 +69,7 @@ buildGoModule rec {
     ++ lib.optional withRdpClient "desktop_access_rdp";
 
   buildInputs = [ openssl libfido2 ]
-    ++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security ];
+    ++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security AppKit ];
   nativeBuildInputs = [ makeWrapper pkg-config ];
 
   patches = [