python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / tokio-console / default.nix
blob8c9b2803a0aeec2dfc7d31d8c35a3d7ace09d1df
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , protobuf
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "tokio-console";
9   version = "0.1.7";
11   src = fetchFromGitHub {
12     owner = "tokio-rs";
13     repo = "console";
14     rev = "tokio-console-v${version}";
15     sha256 = "sha256-yTNLKpBkzzN0X73CjN/UXRGjAGOnCCgJa6A6loA6baM=";
16   };
18   cargoSha256 = "sha256-K/auhqlL/K6RYE0lHyvSUqK1cOwJBBZD3QTUevZzLXQ=";
20   nativeBuildInputs = [ protobuf ];
22   # uses currently unstable tokio features
23   RUSTFLAGS = "--cfg tokio_unstable";
25   checkFlags = [
26     # tests depend upon git repository at test execution time
27     "--skip bootstrap"
28     "--skip config::tests::args_example_changed"
29     "--skip config::tests::toml_example_changed"
30   ];
32   meta = with lib; {
33     description = "A debugger for asynchronous Rust code";
34     homepage = "https://github.com/tokio-rs/console";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ max-niederman ];
37   };