Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
854 B
Nix
37 lines
854 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubedock";
|
|
version = "0.18.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joyrex2001";
|
|
repo = "kubedock";
|
|
rev = version;
|
|
hash = "sha256-95C14Vo3QbHR/PEIPoLECCq9hhLg0Q7iThvdfaV6/lY=";
|
|
};
|
|
|
|
vendorHash = "sha256-iTXpODO45oUgpSvKmjLBQWAVDHLrOYN6iBL/58dd1Mg=";
|
|
|
|
# config.Build not defined as it would break r-ryantm
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/joyrex2001/kubedock/internal/config.Version=${version}"
|
|
];
|
|
|
|
env.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";
|
|
};
|
|
}
|