mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
rustdesk-server: fix darwin builds
This commit is contained in:
parent
a403fd8565
commit
1571a1aacf
@ -1,8 +1,10 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, libsodium
|
, libsodium
|
||||||
|
, Security
|
||||||
, sqlite
|
, sqlite
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, testers
|
, testers
|
||||||
@ -36,6 +38,8 @@ rustPlatform.buildRustPackage rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
libsodium
|
libsodium
|
||||||
sqlite
|
sqlite
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
Security
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
@ -12523,7 +12523,9 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
rustdesk-server = callPackage ../servers/rustdesk-server { };
|
rustdesk-server = callPackage ../servers/rustdesk-server {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
rustypaste = callPackage ../servers/rustypaste { };
|
rustypaste = callPackage ../servers/rustypaste { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user