nixpkgs/pkgs/applications/virtualization/lima/default.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2021-06-25 09:39:49 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, qemu
, makeWrapper
}:
buildGoModule rec {
pname = "lima";
2021-11-07 14:56:30 +00:00
version = "0.7.3";
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}";
2021-11-07 14:56:30 +00:00
sha256 = "sha256-HVWZ0XF1oBUHhkOQHELlZ/pxXUsUo2cVo6EhZl6S0W4=";
2021-06-25 09:39:49 +00:00
};
2021-11-07 14:56:30 +00:00
vendorSha256 = "sha256-LhmZRa7vDylA4DRTfKFRs3lQMnwNfzF1H6ki1/zdpUg=";
2021-06-25 09:39:49 +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 \
--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 ];
};
}