nixpkgs/pkgs/development/tools/vultr-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
545 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-05-12 10:37:05 +02:00
buildGoModule rec {
pname = "vultr-cli";
2022-07-26 18:03:52 +02:00
version = "2.14.2";
2020-05-12 10:37:05 +02:00
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
2022-07-26 18:03:52 +02:00
sha256 = "sha256-Rlill4T9zHdJUVk/46cPknaBXNN+PUGungqRdTMHFz4=";
2020-05-12 10:37:05 +02:00
};
vendorSha256 = null;
doCheck = false;
meta = with lib; {
2020-05-12 10:37:05 +02:00
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 10:37:05 +02:00
};
}