nixpkgs/pkgs/development/tools/tokio-console/default.nix

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

42 lines
1.0 KiB
Nix
Raw Normal View History

2021-12-20 02:04:22 +00:00
{ lib
, fetchFromGitHub
, rustPlatform
, protobuf
}:
rustPlatform.buildRustPackage rec {
pname = "tokio-console";
2023-07-02 12:31:46 +00:00
version = "0.1.9";
2021-12-20 02:04:22 +00:00
src = fetchFromGitHub {
owner = "tokio-rs";
repo = "console";
rev = "tokio-console-v${version}";
2023-07-02 12:31:46 +00:00
hash = "sha256-zISgEhUmAfHErq4AelbnSwtKjtxYH//pbLUAlPKxQYk=";
2021-12-20 02:04:22 +00:00
};
2023-07-02 12:31:46 +00:00
cargoHash = "sha256-qK8U6BZN7sdBP8CbzsDeewsGulNA/KFVS9vscBxysRg=";
2021-12-20 02:04:22 +00:00
nativeBuildInputs = [ protobuf ];
2023-07-02 12:31:46 +00:00
cargoPatches = [ ./cargo-lock.patch ];
2022-10-22 10:23:42 +00:00
# uses currently unstable tokio features
RUSTFLAGS = "--cfg tokio_unstable";
checkFlags = [
# tests depend upon git repository at test execution time
"--skip bootstrap"
"--skip config::tests::args_example_changed"
"--skip config::tests::toml_example_changed"
];
2021-12-20 02:04:22 +00:00
meta = with lib; {
description = "A debugger for asynchronous Rust code";
homepage = "https://github.com/tokio-rs/console";
2023-07-02 12:31:46 +00:00
mainProgram = "tokio-console";
2021-12-20 02:04:22 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ max-niederman ];
};
}