2022-12-28 21:21:41 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, nix-update-script }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "tox-node";
|
2022-12-28 21:21:41 +00:00
|
|
|
version = "0.2.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tox-rs";
|
2022-12-28 21:21:41 +00:00
|
|
|
repo = "tox";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = "v${version}";
|
2022-12-28 21:21:41 +00:00
|
|
|
sha256 = "sha256-3ZRpri3WxwHjMq88TxRJAaTXMui8N1uLek+q8g5PGD4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
buildAndTestSubdir = "tox_node";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
cargoSha256 = "sha256-L5IvYA32W8cTnuWjeljge5X+LZ912ugtcvEKXLqYZ+k=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
passthru.updateScript = nix-update-script { };
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A server application to run tox node written in pure Rust";
|
2022-12-28 21:21:41 +00:00
|
|
|
homepage = "https://github.com/tox-rs/tox";
|
2020-10-11 12:50:04 +00:00
|
|
|
license = [ licenses.gpl3Plus ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ suhr kurnevsky ];
|
2024-02-29 20:09:43 +00:00
|
|
|
mainProgram = "tox-node";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|