1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "fits-cloudctl";
8 version = "0.11.13";
9
10 src = fetchFromGitHub {
11 owner = "fi-ts";
12 repo = "cloudctl";
13 rev = "v${version}";
14 sha256 = "sha256-S4XouqqIBalXqfznrJ8F2TxU9h+gqObnjRXEQnj67LQ=";
15 };
16
17 vendorHash = "sha256-Y1F+7bJwsUb09xTSRSdfa6bOPMFCkNBaNurrfB9IPCA=";
18
19 meta = with lib; {
20 description = "Command-line client for FI-TS Finance Cloud Native services";
21 homepage = "https://github.com/fi-ts/cloudctl";
22 license = licenses.mit;
23 maintainers = with maintainers; [ j0xaf ];
24 mainProgram = "cloudctl";
25 };
26}