nixpkgs/pkgs/servers/rustdesk-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.4 KiB
Nix
Raw Normal View History

2023-07-25 08:55:33 +00:00
{ stdenv
, lib
2023-07-14 23:58:02 +00:00
, rustPlatform
, fetchFromGitHub
, pkg-config
, libsodium
2023-07-25 08:55:33 +00:00
, Security
2023-07-14 23:58:02 +00:00
, sqlite
, nix-update-script
, testers
, rustdesk-server
}:
rustPlatform.buildRustPackage rec {
pname = "rustdesk-server";
version = "1.1.8";
src = fetchFromGitHub {
owner = "rustdesk";
repo = "rustdesk-server";
rev = version;
hash = "sha256-KzIylbPe+YN513UNFuisvDAIe4kICGYDUrfURDOw/no=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"async-speed-limit-0.3.1" = "sha256-iOel6XA07RPrBjQAFLnxXX4VBpDrYZaqQc9clnsOorI=";
"confy-0.4.0" = "sha256-e91cvEixhpPzIthAxzTa3fDY6eCsHUy/eZQAqs7QTDo=";
"tokio-socks-0.5.1" = "sha256-inmAJk0fAlsVNIwfD/M+htwIdQHwGSTRrEy6N/mspMI=";
};
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libsodium
sqlite
2023-07-25 08:55:33 +00:00
] ++ lib.optionals stdenv.isDarwin [
Security
2023-07-14 23:58:02 +00:00
];
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion {
inherit version;
package = rustdesk-server;
command = "hbbr --version";
};
};
meta = with lib; {
description = "RustDesk Server Program";
homepage = "https://github.com/rustdesk/rustdesk-server";
changelog = "https://github.com/rustdesk/rustdesk-server/releases/tag/${version}";
license = licenses.agpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ gaelreyrol tjni ];
2023-07-14 23:58:02 +00:00
};
}