k0sctl: init at 0.9.0

wip/nixpkgs-raku
Nick Cao 3 years ago
parent c45c6acbfe
commit cf06420c47
No known key found for this signature in database
GPG Key ID: 068A56CEF48FA2C1
  1. 25
      pkgs/applications/networking/cluster/k0sctl/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save