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

27 lines
622 B
Nix
Raw Normal View History

2021-09-22 00:53:21 +02:00
{ lib
, buildGoModule
2021-08-26 16:22:22 +02:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "fits-cloudctl";
2022-02-19 14:32:39 +01:00
version = "0.10.9";
2021-08-26 16:22:22 +02:00
src = fetchFromGitHub {
owner = "fi-ts";
repo = "cloudctl";
rev = "v${version}";
2022-02-19 14:32:39 +01:00
sha256 = "sha256-FNlbAxU1FiLl74h+BmpAB3+vZ+RgdlpkehsDLhpZ4EE=";
2021-08-26 16:22:22 +02:00
};
2022-02-16 09:02:40 +01:00
vendorSha256 = "sha256-f35Asf9l6ZfixpjMGzesTsxmANreilMxH2CULMH3b2o=";
2021-08-26 16:22:22 +02: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 00:53:21 +02:00
mainProgram = "cloudctl";
2021-08-26 16:22:22 +02:00
};
}