base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / as / astartectl / package.nix
blobac88b96cfab7f5e7fefe13fa9828dd2d35670307
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , installShellFiles
5 }:
6 buildGoModule rec {
7   pname = "astartectl";
8   version = "24.5.2";
10   src = fetchFromGitHub {
11     owner = "astarte-platform";
12     repo = "astartectl";
13     rev = "v${version}";
14     hash = "sha256-T4/lkeipE7GWq1zTxkoV3MfADlduFKtGuB/dsI4YZZw=";
15   };
17   vendorHash = "sha256-kVI1DigDlTvrYLVRUYoW+AAkd31d9EehjRJxrqo8OB4=";
19   nativeBuildInputs = [ installShellFiles ];
21   postInstall = ''
22     installShellCompletion --cmd astartectl \
23       --bash <($out/bin/astartectl completion bash) \
24       --fish <($out/bin/astartectl completion fish) \
25       --zsh <($out/bin/astartectl completion zsh)
26   '';
28   meta = with lib; {
29     homepage = "https://github.com/astarte-platform/astartectl";
30     description = "Astarte command line client utility";
31     license = licenses.asl20;
32     mainProgram = "astartectl";
33     maintainers = with maintainers; [ noaccos ];
34   };