1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "vultr-cli";
5 version = "2.15.0";
6
7 src = fetchFromGitHub {
8 owner = "vultr";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-F2ZC8JC0PYY4u2to+QzQr2z2+tqOkx59lz8EHqqPotY=";
12 };
13
14 vendorSha256 = null;
15
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Official command line tool for Vultr services";
20 homepage = "https://github.com/vultr/vultr-cli";
21 license = licenses.asl20;
22 maintainers = with maintainers; [ Br1ght0ne ];
23 };
24}