Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / vultr / default.nix
blob71a04845578769fca3cbcde4d665c1e4e787974b
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "vultr";
8   version = "2.0.3";
10   src = fetchFromGitHub {
11     owner = "JamesClonk";
12     repo = "vultr";
13     rev = "v${version}";
14     sha256 = "sha256-kyB6gUbc32NsSDqDy1zVT4HXn0pWxHdBOEBOSaI0Xro=";
15   };
17   vendorHash = null;
19   # There are not test files
20   doCheck = false;
22   meta = with lib; {
23     description = "Vultr CLI and API client library";
24     homepage = "https://jamesclonk.github.io/vultr";
25     changelog = "https://github.com/JamesClonk/vultr/releases/tag/${src.rev}";
26     license = licenses.mit;
27     maintainers = with maintainers; [ zauberpony ];
28   };