kubedock: init at 0.14.1

This commit is contained in:
Mauricio Scheffer 2023-11-18 17:58:42 +00:00
parent 0734225742
commit cbc2d7cbfe
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubedock";
version = "0.14.1";
src = fetchFromGitHub {
owner = "joyrex2001";
repo = "kubedock";
rev = version;
hash = "sha256-xjt/RqvkOHTSTZwNgxmlUeYndPW9jwUE1knLyNXDxaE=";
};
vendorHash = "sha256-4X4v40c4J5SPwj53Zk+j+A9k0RkHGwqz128E+FnLr1c=";
# config.Build not defined as it would break r-ryantm
ldflags = [
"-s"
"-w"
"-X github.com/joyrex2001/kubedock/internal/config.Version=${version}"
];
CGO_ENABLED = 0;
meta = with lib; {
description = "Minimal implementation of the Docker API that will orchestrate containers on a Kubernetes cluster";
homepage = "https://github.com/joyrex2001/kubedock";
license = licenses.mit;
maintainers = with maintainers; [ mausch ];
mainProgram = "kubedock";
};
}

View File

@ -9885,6 +9885,8 @@ with pkgs;
buildGoModule = buildGo120Module;
};
kubedock = callPackage ../development/tools/kubedock { };
kubepug = callPackage ../development/tools/kubepug { };
kubeshark = callPackage ../applications/networking/cluster/kubeshark { };