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
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
darwin,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
lima,
|
|
makeWrapper,
|
|
qemu,
|
|
testers,
|
|
colima,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "colima";
|
|
version = "0.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abiosoft";
|
|
repo = "colima";
|
|
tag = "v${version}";
|
|
hash = "sha256-TNq0lHNF6jwUqamJXYTxuF0Q9mfVwi8BaesQv87eRiE=";
|
|
# We need the git revision
|
|
leaveDotGit = true;
|
|
postFetch = ''
|
|
git -C $out rev-parse --short HEAD > $out/.git-revision
|
|
rm -rf $out/.git
|
|
'';
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
makeWrapper
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.DarwinTools ];
|
|
|
|
vendorHash = "sha256-ZwgzKCOEhgKK2LNRLjnWP6qHI4f6OGORvt3CREJf55I=";
|
|
|
|
# disable flaky Test_extractZones
|
|
# https://hydra.nixos.org/build/212378003/log
|
|
excludedPackages = "gvproxy";
|
|
|
|
env.CGO_ENABLED = 1;
|
|
|
|
preConfigure = ''
|
|
ldflags="-s -w -X github.com/abiosoft/colima/config.appVersion=${version} \
|
|
-X github.com/abiosoft/colima/config.revision=$(cat .git-revision)"
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/colima \
|
|
--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
# Suppress warning on `colima start`: https://github.com/abiosoft/colima/issues/1333
|
|
(lima.override {
|
|
withAdditionalGuestAgents = true;
|
|
})
|
|
qemu
|
|
]
|
|
}
|
|
|
|
installShellCompletion --cmd colima \
|
|
--bash <($out/bin/colima completion bash) \
|
|
--fish <($out/bin/colima completion fish) \
|
|
--zsh <($out/bin/colima completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = colima;
|
|
command = "HOME=$(mktemp -d) colima version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Container runtimes with minimal setup";
|
|
homepage = "https://github.com/abiosoft/colima";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
aaschmid
|
|
tricktron
|
|
];
|
|
mainProgram = "colima";
|
|
};
|
|
}
|