1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

k0sctl: init at 0.9.0

This commit is contained in:
Nick Cao 2021-07-13 16:17:37 +08:00
parent c45c6acbfe
commit cf06420c47
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "k0sctl";
version = "0.9.0";
src = fetchFromGitHub {
owner = "k0sproject";
repo = pname;
rev = "v${version}";
sha256 = "sha256-aW7x2XfeFU0z3lwPTsDHudHjdwTtfASgrbKGddVb6Rs=";
};
vendorSha256 = "sha256-bsXXWyeZXZLV6igEvyvPpS92FruGiLDx/5CCTKPe0EU=";
meta = with lib; {
description = "A bootstrapping and management tool for k0s clusters.";
homepage = "https://k0sproject.io/";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};
}

View file

@ -13728,6 +13728,8 @@ in
augustus = callPackage ../games/augustus { };
k0sctl = callPackage ../applications/networking/cluster/k0sctl { };
k2tf = callPackage ../development/tools/misc/k2tf { };
kafkacat = callPackage ../development/tools/kafkacat { };