vultr-cli: init at 0.3.1

This commit is contained in:
Oleksii Filonenko 2020-05-12 08:37:05 +00:00 committed by Mario Rodas
parent de40e1e4d2
commit add838f632
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "vultr-cli";
version = "0.3.1";
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
sha256 = "1z3vbcpchrf3bak08p72c96c2l39hdp196fqc5wvsqar3mzrrz7s";
};
vendorSha256 = null;
meta = with stdenv.lib; {
description = "Official command line tool for Vultr services";
homepage = "https://github.com/vultr/vultr-cli";
license = licenses.asl20;
maintainers = with maintainers; [ filalex77 ];
};
}

View file

@ -11054,6 +11054,8 @@ in
vultr = callPackage ../development/tools/vultr { };
vultr-cli = callPackage ../development/tools/vultr-cli { };
vulnix = callPackage ../tools/security/vulnix { };
vtable-dumper = callPackage ../development/tools/misc/vtable-dumper { };