Merge pull request #195485 from 06kellyjac/teleport-fix

teleport: fix for darwin
This commit is contained in:
Jörg Thalheim
2022-10-11 14:39:33 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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 = [
+1 -1
View File
@@ -11718,7 +11718,7 @@ with pkgs;
};
teleport = callPackage ../servers/teleport {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
};
telepresence = callPackage ../tools/networking/telepresence {