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

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

27 lines
623 B
Nix
Raw Normal View History

2021-09-21 22:53:21 +00:00
{ lib
, buildGoModule
2021-08-26 14:22:22 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "fits-cloudctl";
2022-05-27 11:29:45 +00:00
version = "0.10.17";
2021-08-26 14:22:22 +00:00
src = fetchFromGitHub {
owner = "fi-ts";
repo = "cloudctl";
rev = "v${version}";
2022-05-27 11:29:45 +00:00
sha256 = "sha256-cC6qPPRrMUMpwQ/FH+H6LuwC35dfgcZyB2yqz7tvSIg=";
2021-08-26 14:22:22 +00:00
};
2022-05-27 11:29:45 +00:00
vendorSha256 = "sha256-nNzmecvTAIno6+OkpmlQ0eHfNfQGUH+ICLumvLswlWA=";
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 ];
2021-09-21 22:53:21 +00:00
mainProgram = "cloudctl";
2021-08-26 14:22:22 +00:00
};
}