Merge pull request #135795 from j0xaf/fits-cloudctl

fits-cloudctl: init at 0.9.11
This commit is contained in:
Sandro 2021-09-17 18:01:41 +02:00 committed by GitHub
commit 15b0167274
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -4811,6 +4811,12 @@
githubId = 26877687;
name = "Yurii Izorkin";
};
j0xaf = {
email = "j0xaf@j0xaf.de";
name = "Jörn Gersdorf";
github = "j0xaf";
githubId = 932697;
};
j0hax = {
name = "Johannes Arnold";
email = "johannes.arnold@stud.uni-hannover.de";

View file

@ -0,0 +1,25 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "fits-cloudctl";
version = "0.9.11";
src = fetchFromGitHub {
owner = "fi-ts";
repo = "cloudctl";
rev = "v${version}";
sha256 = "1i9h96b0b69ib72b2ayp8mhgvkm21jbh8mf7wb1fp2gdzbxcgrhg";
};
vendorSha256 = "1fs1jqxz36i25vyb0mznkjglz8wwq9a8884052cjpacvsgd3glkf";
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 ];
};
}

View file

@ -2771,6 +2771,8 @@ with pkgs;
firestarter = callPackage ../applications/misc/firestarter { };
fits-cloudctl = callPackage ../tools/admin/fits-cloudctl { };
frangipanni = callPackage ../tools/text/frangipanni { };
fselect = callPackage ../tools/misc/fselect { };