Merge pull request #145087 from bittersweet/fix_termscp_darwin_build

termscp: fix darwin build
This commit is contained in:
Domen Kožar 2021-11-09 23:00:08 -06:00 committed by GitHub
commit 99a0d87323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@
, openssl
, pkg-config
, rustPlatform
, Foundation
, Security
, stdenv
}:
@ -31,6 +32,7 @@ rustPlatform.buildRustPackage rec {
libssh
openssl
] ++ lib.optional stdenv.isDarwin [
Foundation
Security
];

View File

@ -9861,7 +9861,7 @@ with pkgs;
telescope = callPackage ../applications/networking/browsers/telescope { };
termscp = callPackage ../tools/networking/termscp {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk.frameworks) Foundation Security;
};
termius = callPackage ../applications/networking/termius { };