2021-06-28 23:13:55 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, qemu
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "lima";
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "0.9.2";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-08-05 21:33:18 +00:00
|
|
|
owner = "lima-vm";
|
2021-06-28 23:13:55 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-03-30 09:31:56 +00:00
|
|
|
sha256 = "sha256-GS/mzBoVL78U7vMxkbnQfb89U640w8YdA8YhPH4Iwrc=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
vendorSha256 = "sha256-funVyM0RhDzGQPyzsABzXu3ETPYJwRosqkQreGBADZc=";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
make "VERSION=v${version}" binaries
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
|
|
cp -r _output/* $out
|
|
|
|
wrapProgram $out/bin/limactl \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ qemu ]}
|
|
|
|
installShellCompletion --cmd limactl \
|
2021-10-11 16:52:03 +00:00
|
|
|
--bash <($out/bin/limactl completion bash) \
|
|
|
|
--fish <($out/bin/limactl completion fish) \
|
|
|
|
--zsh <($out/bin/limactl completion zsh)
|
2021-06-28 23:13:55 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
USER=nix $out/bin/limactl validate examples/default.yaml
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-08-05 21:33:18 +00:00
|
|
|
homepage = "https://github.com/lima-vm/lima";
|
2021-06-28 23:13:55 +00:00
|
|
|
description = "Linux virtual machines (on macOS, in most cases)";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ anhduy ];
|
|
|
|
};
|
|
|
|
}
|