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
32 lines
804 B
Nix
32 lines
804 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
stdenv,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "cloud-provider-kind";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = "cloud-provider-kind";
|
|
tag = "v${version}";
|
|
hash = "sha256-6HdP6/uUCtLyZ7vjFGB2NLqe73v/yolRTUE5s/KyIIk=";
|
|
};
|
|
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
vendorHash = null;
|
|
|
|
checkFlags = lib.optional stdenv.hostPlatform.isDarwin "-skip=^Test_firstSuccessfulProbe$";
|
|
|
|
meta = {
|
|
description = "Load Balancer implementation for Kubernetes-in-Docker";
|
|
homepage = "https://github.com/kubernetes-sigs/cloud-provider-kind";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ nicoo ];
|
|
mainProgram = "cloud-provider-kind";
|
|
};
|
|
}
|