2021-09-22 15:38:15 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
2021-09-18 10:52:07 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fits-cloudctl";
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "0.10.12";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fi-ts";
|
|
|
|
repo = "cloudctl";
|
|
|
|
rev = "v${version}";
|
2022-03-30 09:31:56 +00:00
|
|
|
sha256 = "sha256-nFxudeJJ5BkfZxSnRquyATHyHwI+7xwfQxiY8cedtis=";
|
2021-09-18 10:52:07 +00:00
|
|
|
};
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
vendorSha256 = "sha256-f35Asf9l6ZfixpjMGzesTsxmANreilMxH2CULMH3b2o=";
|
2021-09-18 10:52:07 +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-22 15:38:15 +00:00
|
|
|
mainProgram = "cloudctl";
|
2021-09-18 10:52:07 +00:00
|
|
|
};
|
|
|
|
}
|