nixpkgs/pkgs/tools/admin/fits-cloudctl/default.nix

26 lines
594 B
Nix
Raw Normal View History

2021-08-26 14:22:22 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "fits-cloudctl";
2021-09-20 16:21:18 +00:00
version = "0.10.0";
2021-08-26 14:22:22 +00:00
src = fetchFromGitHub {
owner = "fi-ts";
repo = "cloudctl";
rev = "v${version}";
2021-09-20 16:21:18 +00:00
sha256 = "09v5fgqf4c2d6k2z638g29mcsmdisg3zfq1g7330wsd7yaxv9m23";
2021-08-26 14:22:22 +00:00
};
2021-09-20 16:21:18 +00:00
vendorSha256 = "1rdqih04mlp33m69y9zxm4llx8cafwqhjhfxw873s8b35j0xz2m5";
2021-08-26 14:22:22 +00:00
meta = with lib; {
description = "Command-line client for FI-TS Finance Cloud Native services";
homepage = "https://github.com/fi-ts/cloudctl";
license = licenses.mit;
maintainers = with maintainers; [ j0xaf ];
};
}