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-09-07 06:51:01 +01:00
version = "0.4.0";
2020-05-12 09:37:05 +01:00
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
2020-09-07 06:51:01 +01:00
sha256 = "0gp1v62iqh3hk46cc5sh8a1nw5nf98m969fdhgxdppwr5dhj9isp";
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; [ filalex77 ];
};
}