depot/pkgs/by-name/kw/kwok/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
754 B
Nix

{
buildGoModule,
lib,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "kwok";
version = "0.6.1";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "kwok";
rev = "refs/tags/v${version}";
hash = "sha256-RVyXGPT30Fz+K1VdMneYldXvzHyimuCX406DMKOtUq4=";
};
vendorHash = "sha256-xzFbcsL6pz91GFwjkriTMKlX2fgm2NMO9+H3lqH/C2c=";
doCheck = false; # docker is need for test
meta = {
description = "Simulate massive Kubernetes clusters with low resource usage locally without kubelet";
homepage = "https://kwok.sigs.k8s.io";
changelog = "https://github.com/kubernetes-sigs/kwok/releases/tag/v${version}";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
};
}