Skip to content

Commit

Permalink
zktree:: init at 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezameskin committed Dec 8, 2020
1 parent 0c75bbd commit 147fae2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/misc/zktree/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28814,4 +28814,6 @@ in
psftools = callPackage ../os-specific/linux/psftools {};

lc3tools = callPackage ../development/tools/lc3tools {};

zktree = callPackage ../applications/misc/zktree {};
}

0 comments on commit 147fae2

Please sign in to comment.