evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / zk / zktree / package.nix
blob71b8806ae070df5c4ad3ff240b5aa1b936d4ae32
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "zktree";
8   version = "0.0.1";
10   src = fetchFromGitHub {
11     owner = "alirezameskin";
12     repo = "zktree";
13     rev = version;
14     sha256 = "11w86k1w5zryiq6bqr98pjhffd3l76377yz53qx0n76vc5374fk9";
15   };
17   cargoHash = "sha256-RZtxpUsh8Gt/7bNcVGE4qfiLLENHDHAYXZapNOpTZ6M=";
19   meta = with lib; {
20     description = "Small tool to display Znodes in Zookeeper in tree structure";
21     homepage = "https://github.com/alirezameskin/zktree";
22     license = licenses.unlicense;
23     maintainers = with lib.maintainers; [ alirezameskin ];
24     mainProgram = "zktree";
25   };