nixpkgs/pkgs/development/tools/vultr-cli/default.nix
2021-09-22 04:07:44 +00:00

25 lines
544 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "vultr-cli";
version = "2.8.3";
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
sha256 = "sha256-TQgyJBzcfvT004Op7p6Iq7olOebJMK3HuU7PtGBkNII=";
};
vendorSha256 = null;
doCheck = false;
meta = with lib; {
description = "Official command line tool for Vultr services";
homepage = "https://github.com/vultr/vultr-cli";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne ];
};
}