biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / fx / default.nix
blobbcb458f0b64789f96873f2784ef7bd5bda7093bf
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "fx";
5   version = "34.0.0";
7   src = fetchFromGitHub {
8     owner = "antonmedv";
9     repo = pname;
10     rev = version;
11     hash = "sha256-gVeeCJOqrEua5quID1n1928oHtP9gfIDe4erVn1y2Eo=";
12   };
14   nativeBuildInputs = [ installShellFiles ];
16   vendorHash = "sha256-otORAeD9+J6/10TDusEnFfRRxTb/52Zk7Ttaw46xnsU=/sTS1mJw=";
18   postInstall = ''
19     installShellCompletion --cmd fx \
20       --bash <($out/bin/fx --comp bash) \
21       --fish <($out/bin/fx --comp fish) \
22       --zsh <($out/bin/fx --comp zsh)
23   '';
25   meta = with lib; {
26     description = "Terminal JSON viewer";
27     mainProgram = "fx";
28     homepage = "https://github.com/antonmedv/fx";
29     changelog = "https://github.com/antonmedv/fx/releases/tag/${src.rev}";
30     license = licenses.mit;
31     maintainers = with maintainers; [ figsoda ];
32   };