Merge pull request #101468 from alirezameskin/master
This commit is contained in:
commit
a3289a62c4
@ -384,6 +384,12 @@
|
|||||||
githubId = 2822871;
|
githubId = 2822871;
|
||||||
name = "Alistair Bill";
|
name = "Alistair Bill";
|
||||||
};
|
};
|
||||||
|
alirezameskin = {
|
||||||
|
email = "alireza.meskin@gmail.com";
|
||||||
|
github = "alirezameskin";
|
||||||
|
githubId = 36147;
|
||||||
|
name = "Alireza Meskin";
|
||||||
|
};
|
||||||
alkeryn = {
|
alkeryn = {
|
||||||
email = "plbraundev@gmail.com";
|
email = "plbraundev@gmail.com";
|
||||||
github = "Alkeryn";
|
github = "Alkeryn";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -28874,4 +28874,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 New Issue
Block a user