push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,94 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
installShellFiles,
k3sVersion ? null,
}:
let
hasVPrefix = ver: (builtins.elemAt (lib.stringToCharacters ver) 0) == "v";
k3sVersionSet =
if k3sVersion != null then
if hasVPrefix k3sVersion then throw "k3sVersion should not have a v prefix" else true
else
false;
in
buildGoModule rec {
pname = "k3d";
version = "5.8.3";
src = fetchFromGitHub {
owner = "k3d-io";
repo = "k3d";
tag = "v${version}";
hash = "sha256-UBiDDZf/UtgPGRV9WUnoC32wc64nthBpBheEYOTp6Hk=";
};
vendorHash = "sha256-lFmIRtkUiohva2Vtg4AqHaB5McVOWW5+SFShkNqYVZ8=";
deleteVendor = true;
nativeBuildInputs = [ installShellFiles ];
excludedPackages = [
"tools"
"docgen"
];
ldflags =
let
t = "github.com/k3d-io/k3d/v${lib.versions.major version}/version";
in
[
"-s"
"-w"
"-X ${t}.Version=v${version}"
]
++ lib.optionals k3sVersionSet [ "-X ${t}.K3sVersion=v${k3sVersion}" ];
preCheck = ''
# skip test that uses networking
substituteInPlace version/version_test.go \
--replace-fail "TestGetK3sVersion" "SkipGetK3sVersion"
'';
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd k3d \
--bash <($out/bin/k3d completion bash) \
--fish <($out/bin/k3d completion fish) \
--zsh <($out/bin/k3d completion zsh)
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/k3d --help
$out/bin/k3d --version | grep -e "k3d version v${version}" ${lib.optionalString k3sVersionSet "-e \"k3s version v${k3sVersion}\""}
runHook postInstallCheck
'';
env.GOWORK = "off";
meta = {
homepage = "https://github.com/k3d-io/k3d/";
changelog = "https://github.com/k3d-io/k3d/blob/v${version}/CHANGELOG.md";
description = "Helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container";
mainProgram = "k3d";
longDescription = ''
k3s is the lightweight Kubernetes distribution by Rancher: rancher/k3s
k3d creates containerized k3s clusters. This means, that you can spin up a
multi-node k3s cluster on a single machine using docker.
'';
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
kuznero
jlesquembre
ngerstle
jk
ricochet
];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}

View File

@@ -0,0 +1,63 @@
{
lib,
buildGoModule,
fetchFromGitHub,
makeWrapper,
installShellFiles,
bash,
openssh,
}:
buildGoModule rec {
pname = "k3sup";
version = "0.13.11";
src = fetchFromGitHub {
owner = "alexellis";
repo = "k3sup";
rev = version;
sha256 = "sha256-MLGgH9Tg3lcl/nDGlGgfvgjoxjXRux79Cz6Tig0kDM4=";
};
nativeBuildInputs = [
makeWrapper
installShellFiles
];
vendorHash = null;
postConfigure = ''
substituteInPlace vendor/github.com/alexellis/go-execute/v2/exec.go \
--replace "/bin/bash" "${bash}/bin/bash"
'';
env.CGO_ENABLED = 0;
ldflags = [
"-s"
"-w"
"-X github.com/alexellis/k3sup/cmd.GitCommit=ref/tags/${version}"
"-X github.com/alexellis/k3sup/cmd.Version=${version}"
];
postInstall = ''
wrapProgram "$out/bin/k3sup" \
--prefix PATH : ${lib.makeBinPath [ openssh ]}
installShellCompletion --cmd k3sup \
--bash <($out/bin/k3sup completion bash) \
--zsh <($out/bin/k3sup completion zsh) \
--fish <($out/bin/k3sup completion fish)
'';
meta = with lib; {
homepage = "https://github.com/alexellis/k3sup";
description = "Bootstrap Kubernetes with k3s over SSH";
mainProgram = "k3sup";
license = licenses.mit;
maintainers = with maintainers; [
welteki
qjoly
];
};
}