26 lines
621 B
Nix
26 lines
621 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "fits-cloudctl";
|
|
version = "0.11.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fi-ts";
|
|
repo = "cloudctl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-S4XouqqIBalXqfznrJ8F2TxU9h+gqObnjRXEQnj67LQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-Y1F+7bJwsUb09xTSRSdfa6bOPMFCkNBaNurrfB9IPCA=";
|
|
|
|
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 ];
|
|
mainProgram = "cloudctl";
|
|
};
|
|
}
|