tokio-console: init at 0.1.0

main
Max Niederman 3 years ago
parent f9c6fd3779
commit 6245018b19
No known key found for this signature in database
GPG Key ID: C2EB24390E0AC0FF
  1. 29
      pkgs/development/tools/tokio-console/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,29 @@
{ lib
, fetchFromGitHub
, rustPlatform
, protobuf
}:
rustPlatform.buildRustPackage rec {
pname = "tokio-console";
version = "0.1.0";
src = fetchFromGitHub {
owner = "tokio-rs";
repo = "console";
rev = "tokio-console-v${version}";
sha256 = "sha256-1wxRTdDmgTlGJ3W1txDA/3Rnccs3KBw55vprrGaVnkg=";
};
cargoSha256 = "sha256-RScu5V55OowwWHi3MLjW8DPlTMA/IEBYFt4VUDUHPKo=";
nativeBuildInputs = [ protobuf ];
meta = with lib; {
description = "A debugger for asynchronous Rust code";
homepage = "https://github.com/tokio-rs/console";
license = with licenses; [ mit ];
maintainers = with maintainers; [ max-niederman ];
};
}

@ -10220,6 +10220,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
tokio-console = callPackage ../development/tools/tokio-console { };
toml2nix = (callPackage ../tools/toml2nix { }).toml2nix { };
topgrade = callPackage ../tools/misc/topgrade {

Loading…
Cancel
Save