2020-12-09 12:39:15 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "zktree";
|
|
|
|
version = "0.0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alirezameskin";
|
|
|
|
repo = "zktree";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "11w86k1w5zryiq6bqr98pjhffd3l76377yz53qx0n76vc5374fk9";
|
|
|
|
};
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
cargoHash = "sha256-RZtxpUsh8Gt/7bNcVGE4qfiLLENHDHAYXZapNOpTZ6M=";
|
2020-12-09 12:39:15 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Small tool to display Znodes in Zookeeper in tree structure";
|
2020-12-09 12:39:15 +00:00
|
|
|
homepage = "https://github.com/alirezameskin/zktree";
|
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = with lib.maintainers; [ alirezameskin ];
|
2024-02-29 20:09:43 +00:00
|
|
|
mainProgram = "zktree";
|
2020-12-09 12:39:15 +00:00
|
|
|
};
|
|
|
|
}
|