2021-12-19 01:06:50 +00:00
|
|
|
{ lib
|
2023-02-09 11:40:11 +00:00
|
|
|
, stdenv
|
2023-03-08 16:32:21 +00:00
|
|
|
, darwin
|
2022-07-14 12:49:19 +00:00
|
|
|
, buildGoModule
|
2021-12-19 01:06:50 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, lima
|
2023-02-09 11:40:11 +00:00
|
|
|
, lima-bin
|
2021-12-19 01:06:50 +00:00
|
|
|
, makeWrapper
|
2022-07-14 12:49:19 +00:00
|
|
|
, qemu
|
|
|
|
, testers
|
|
|
|
, colima
|
2023-02-09 11:40:11 +00:00
|
|
|
# use lima-bin on darwin to support native macOS virtualization
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/209171
|
|
|
|
, lima-drv ? if stdenv.isDarwin then lima-bin else lima
|
2021-12-19 01:06:50 +00:00
|
|
|
}:
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
buildGoModule rec {
|
2021-12-19 01:06:50 +00:00
|
|
|
pname = "colima";
|
2023-03-08 16:32:21 +00:00
|
|
|
version = "0.5.3";
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "abiosoft";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-08 16:32:21 +00:00
|
|
|
sha256 = "sha256-uAstW+LzgT+xEJf4WNVSZsWtE50RU/rRpC7mkkFMIJU=";
|
2022-06-16 17:23:12 +00:00
|
|
|
# We need the git revision
|
|
|
|
leaveDotGit = true;
|
|
|
|
postFetch = ''
|
2022-07-14 12:49:19 +00:00
|
|
|
git -C $out rev-parse --short HEAD > $out/.git-revision
|
2022-06-16 17:23:12 +00:00
|
|
|
rm -rf $out/.git
|
|
|
|
'';
|
2021-12-19 01:06:50 +00:00
|
|
|
};
|
|
|
|
|
2023-03-08 16:32:21 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ darwin.DarwinTools ];
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2023-03-08 16:32:21 +00:00
|
|
|
vendorHash = "sha256-bEgC7j8WvCgrJ2Ahye4mfWVEmo6Y/OO64mDIJXvtaiE=";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
CGO_ENABLED = 1;
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2022-07-14 12:49:19 +00:00
|
|
|
ldflags="-s -w -X github.com/abiosoft/colima/config.appVersion=${version} \
|
|
|
|
-X github.com/abiosoft/colima/config.revision=$(cat .git-revision)"
|
2022-06-16 17:23:12 +00:00
|
|
|
'';
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/colima \
|
2023-02-09 11:40:11 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ lima-drv qemu ]}
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
installShellCompletion --cmd colima \
|
|
|
|
--bash <($out/bin/colima completion bash) \
|
|
|
|
--fish <($out/bin/colima completion fish) \
|
|
|
|
--zsh <($out/bin/colima completion zsh)
|
|
|
|
'';
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = colima;
|
|
|
|
command = "HOME=$(mktemp -d) colima version";
|
|
|
|
};
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
meta = with lib; {
|
2022-07-14 12:49:19 +00:00
|
|
|
description = "Container runtimes with minimal setup";
|
2021-12-19 01:06:50 +00:00
|
|
|
homepage = "https://github.com/abiosoft/colima";
|
|
|
|
license = licenses.mit;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ aaschmid tricktron ];
|
2021-12-19 01:06:50 +00:00
|
|
|
};
|
|
|
|
}
|