Merge pull request #203712 from urandom2/rke

rke: init at 1.4.1
This commit is contained in:
figsoda
2022-11-30 09:11:15 -05:00
committed by GitHub
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "rke";
version = "1.4.1";
src = fetchFromGitHub {
owner = "rancher";
repo = pname;
rev = "v${version}";
hash = "sha256-H5T7Hr6/YL93lbCLOxfQ+Kmv3C+FS074418mHhBV3Bs=";
};
vendorHash = "sha256-zV1lrJhzrUAcEk6jYLCFrHcYw3CZart46qXErCTjZyQ=";
subPackages = [ "." ];
ldflags = [ "-s" "-w" "-X=main.VERSION=v${version}" ];
meta = with lib; {
homepage = "https://github.com/rancher/rke";
description = "An extremely simple, lightning fast Kubernetes distribution that runs entirely within containers";
changelog = "https://github.com/rancher/rke/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ urandom ];
};
}
+2
View File
@@ -31792,6 +31792,8 @@ with pkgs;
rkdeveloptool-pine64 = callPackage ../misc/rkdeveloptool-pine64 { };
rke = callPackage ../applications/networking/cluster/rke {};
rocketchat-desktop = callPackage ../applications/networking/instant-messengers/rocketchat-desktop { };
rofi-unwrapped = callPackage ../applications/misc/rofi { };