silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / to / tox-node / package.nix
blob3f8857fff5698215dafb02f5bfd885519db5bf1f
1 { lib, rustPlatform, fetchFromGitHub, nix-update-script }:
3 rustPlatform.buildRustPackage rec {
4   pname = "tox-node";
5   version = "0.2.0";
7   src = fetchFromGitHub {
8     owner = "tox-rs";
9     repo = "tox";
10     rev = "v${version}";
11     sha256 = "sha256-3ZRpri3WxwHjMq88TxRJAaTXMui8N1uLek+q8g5PGD4=";
12   };
14   buildAndTestSubdir = "tox_node";
16   cargoHash = "sha256-L5IvYA32W8cTnuWjeljge5X+LZ912ugtcvEKXLqYZ+k=";
18   passthru.updateScript = nix-update-script { };
20   meta = with lib; {
21     description = "Server application to run tox node written in pure Rust";
22     homepage = "https://github.com/tox-rs/tox";
23     license = [ licenses.gpl3Plus ];
24     platforms = platforms.linux;
25     maintainers = with maintainers; [ suhr kurnevsky ];
26     mainProgram = "tox-node";
27   };