3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/fits-cloudctl/default.nix

27 lines
622 B
Nix
Raw Normal View History

2021-09-21 23:53:21 +01:00
{ lib
, buildGoModule
2021-08-26 15:22:22 +01:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "fits-cloudctl";
2022-01-24 09:41:55 +00:00
version = "0.10.6";
2021-08-26 15:22:22 +01:00
src = fetchFromGitHub {
owner = "fi-ts";
repo = "cloudctl";
rev = "v${version}";
2022-01-24 09:41:55 +00:00
sha256 = "sha256-GSdVwpYmJ3VnZaMQ8SjzcHpeefFjSaZXRcUAXEI9PKo=";
2021-08-26 15:22:22 +01:00
};
2022-01-31 06:48:54 +00:00
vendorSha256 = "sha256-4iQxqhXMGeMgHarjVY/rCLr7Am1mniqxTkMxbcp3fGI=";
2021-08-26 15:22:22 +01: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 23:53:21 +01:00
mainProgram = "cloudctl";
2021-08-26 15:22:22 +01:00
};
}