3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/vultr-cli/default.nix

25 lines
555 B
Nix
Raw Normal View History

2020-05-12 09:37:05 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "vultr-cli";
2020-11-27 01:16:40 +00:00
version = "2.0.0";
2020-05-12 09:37:05 +01:00
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
2020-11-27 01:16:40 +00:00
sha256 = "05qxbqq9mlq2jmyj5m9vmgw6s6a3wj06hmxj74g9lgqg8xyfglnh";
2020-05-12 09:37:05 +01:00
};
vendorSha256 = null;
doCheck = false;
2020-05-12 09:37:05 +01:00
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; [ Br1ght0ne ];
2020-05-12 09:37:05 +01:00
};
}