biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / vultr-cli / default.nix
blobc380a2c45bc849cebcc6e9d72570aaa72814420f
1 { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "vultr-cli";
5   version = "3.0.3";
7   src = fetchFromGitHub {
8     owner = "vultr";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-6OVigI2eHE8qFC5nmH67NcKkDD0iFXl3ynYJyFcpmGw=";
12   };
14   vendorHash = "sha256-MDzYiLMYoR9qOTPVnlzTDbgVvg72HDP2DpM6NKUFNdg=";
16   nativeBuildInputs = [ installShellFiles ];
18   ldflags = [ "-s" "-w" ];
20   postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
21     installShellCompletion --cmd vultr-cli \
22       --bash <($out/bin/vultr-cli completion bash) \
23       --fish <($out/bin/vultr-cli completion fish) \
24       --zsh <($out/bin/vultr-cli completion zsh)
25   '';
27   meta = with lib; {
28     description = "Official command line tool for Vultr services";
29     homepage = "https://github.com/vultr/vultr-cli";
30     changelog = "https://github.com/vultr/vultr-cli/blob/v${version}/CHANGELOG.md";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ Br1ght0ne ];
33     mainProgram = "vultr-cli";
34   };