ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / zk / zktree / package.nix
blobf2bcf64da04802adb9a5bd11c0add570fc10067c
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "zktree";
9   version = "0.0.1";
11   src = fetchFromGitHub {
12     owner = "alirezameskin";
13     repo = "zktree";
14     rev = version;
15     sha256 = "11w86k1w5zryiq6bqr98pjhffd3l76377yz53qx0n76vc5374fk9";
16   };
18   cargoHash = "sha256-RZtxpUsh8Gt/7bNcVGE4qfiLLENHDHAYXZapNOpTZ6M=";
20   meta = with lib; {
21     description = "Small tool to display Znodes in Zookeeper in tree structure";
22     homepage = "https://github.com/alirezameskin/zktree";
23     license = licenses.unlicense;
24     maintainers = with lib.maintainers; [ alirezameskin ];
25     mainProgram = "zktree";
26   };