nixpkgs/pkgs/development/tools/vultr-cli/default.nix
IndeedNotJames 2e4311834d
vultr-cli: enable tests
They run just fine.
Seems to be a leftover from #94632 (cea7cd902e), which changed the default of `doCheck` from `false` to `true`
2023-04-05 18:16:41 +02:00

23 lines
570 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "vultr-cli";
version = "2.16.2";
src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
hash = "sha256-TugONG98MC1+B9kDLH9xeMmD41fHNV8VCWWWtOdlwys=";
};
vendorHash = "sha256-P4xr7zVTwBRVoPxtKn3FNV7Vp6lI4uWdTJyXwex8Fe4=";
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 ];
};
}