mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #195485 from 06kellyjac/teleport-fix
teleport: fix for darwin
This commit is contained in:
commit
e325d85f0f
2 changed files with 3 additions and 2 deletions
|
@ -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 = [
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue