zktree:: init at 0.0.1
This commit is contained in:
parent
0c75bbd109
commit
147fae2bd6
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/misc/zktree/default.nix
Normal file
25
pkgs/applications/misc/zktree/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "zktree";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alirezameskin";
|
||||||
|
repo = "zktree";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "11w86k1w5zryiq6bqr98pjhffd3l76377yz53qx0n76vc5374fk9";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1d35jrxvhf7m04s1kh0yrfhy9j9i6qzwbw2mwapgsrcsr5vhxasn";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A small tool to display Znodes in Zookeeper in tree structure.";
|
||||||
|
homepage = "https://github.com/alirezameskin/zktree";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with lib.maintainers; [ alirezameskin ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -28814,4 +28814,6 @@ in
|
||||||
psftools = callPackage ../os-specific/linux/psftools {};
|
psftools = callPackage ../os-specific/linux/psftools {};
|
||||||
|
|
||||||
lc3tools = callPackage ../development/tools/lc3tools {};
|
lc3tools = callPackage ../development/tools/lc3tools {};
|
||||||
|
|
||||||
|
zktree = callPackage ../applications/misc/zktree {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue