2021-06-25 09:39:49 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, qemu
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "lima";
|
2022-04-27 10:27:55 +00:00
|
|
|
version = "0.10.0";
|
2021-06-25 09:39:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-08-05 08:21:32 +00:00
|
|
|
owner = "lima-vm";
|
2021-06-25 09:39:49 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-04-27 10:27:55 +00:00
|
|
|
sha256 = "sha256-xlpNJjSBw1iL8CjbWE6v4u7Vq5PjkGv0tQKU5eRN13w=";
|
2021-06-25 09:39:49 +00:00
|
|
|
};
|
|
|
|
|
2022-04-27 10:27:55 +00:00
|
|
|
vendorSha256 = "sha256-uTkCi969RQ4K0ZJ2vOgqv3OJgzVVRX7b2sXNfmR6qoA=";
|
2021-06-25 09:39:49 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
|
|
|
2022-04-27 10:27:55 +00:00
|
|
|
# clean fails with read only vendor dir
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace 'binaries: clean' 'binaries:'
|
|
|
|
'';
|
|
|
|
|
2021-06-25 09:39:49 +00:00
|
|
|
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-09 00:47:11 +00:00
|
|
|
--bash <($out/bin/limactl completion bash) \
|
|
|
|
--fish <($out/bin/limactl completion fish) \
|
|
|
|
--zsh <($out/bin/limactl completion zsh)
|
2021-06-25 09:39:49 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
USER=nix $out/bin/limactl validate examples/default.yaml
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-08-05 08:21:32 +00:00
|
|
|
homepage = "https://github.com/lima-vm/lima";
|
2021-06-25 09:39:49 +00:00
|
|
|
description = "Linux virtual machines (on macOS, in most cases)";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ anhduy ];
|
|
|
|
};
|
|
|
|
}
|