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

54 lines
1.2 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-09-06 02:26:37 +00:00
version = "0.6.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-09-06 02:26:37 +00:00
sha256 = "sha256-3Bc8F8L4ac0YoUp2zoQYPsj7hcXKf8SVkE7q6q0MNSs=";
2021-06-25 09:39:49 +00:00
};
2021-09-06 02:26:37 +00:00
vendorSha256 = "sha256-vYeHv6sSiO6fY+oXR8bFFs/NAhivtnkc15pXEu+reZQ=";
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)
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 ];
};
}