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:
parent
c45c6acbfe
commit
cf06420c47
25
pkgs/applications/networking/cluster/k0sctl/default.nix
Normal file
25
pkgs/applications/networking/cluster/k0sctl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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…
Reference in a new issue