7 rustPlatform.buildRustPackage rec {
8 pname = "tokio-console";
11 src = fetchFromGitHub {
14 rev = "tokio-console-v${version}";
15 sha256 = "sha256-yTNLKpBkzzN0X73CjN/UXRGjAGOnCCgJa6A6loA6baM=";
18 cargoSha256 = "sha256-K/auhqlL/K6RYE0lHyvSUqK1cOwJBBZD3QTUevZzLXQ=";
20 nativeBuildInputs = [ protobuf ];
22 # uses currently unstable tokio features
23 RUSTFLAGS = "--cfg tokio_unstable";
26 # tests depend upon git repository at test execution time
28 "--skip config::tests::args_example_changed"
29 "--skip config::tests::toml_example_changed"
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 ];