depot/third_party/nixpkgs/pkgs/os-specific/darwin/utm/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

55 lines
1.8 KiB
Nix

{ lib
, undmg
, fetchurl
, stdenvNoCC
}:
stdenvNoCC.mkDerivation rec {
pname = "utm";
version = "4.0.8";
src = fetchurl {
url = "https://github.com/utmapp/UTM/releases/download/v${version}/UTM.dmg";
sha256 = "sha256-a6GQyiW8pqw6fN3WVuTVUfnsl/qPtmzDxUvWNElli5k=";
};
nativeBuildInputs = [ undmg ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/Applications
cp -r *.app $out/Applications
'';
meta = with lib; {
description = "Full featured system emulator and virtual machine host for iOS and macOS";
longDescription = ''
UTM is a full featured system emulator and virtual machine host for iOS
and macOS. It is based off of QEMU. In short, it allows you to run
Windows, Linux, and more on your Mac, iPhone, and iPad.
Features:
- Full system emulation (MMU, devices, etc) using QEMU
- 30+ processors supported including x86_64, ARM64, and RISC-V
- VGA graphics mode using SPICE and QXL
- Text terminal mode
- USB devices
- JIT based acceleration using QEMU TCG
- Frontend designed from scratch for macOS 11 and iOS 11+ using the
latest and greatest APIs
- Create, manage, run VMs directly from your device
- Hardware accelerated virtualization using Hypervisor.framework and
QEMU
- Boot macOS guests with Virtualization.framework on macOS 12+
See https://docs.getutm.app/ for more information.
'';
homepage = "https://mac.getutm.app/";
changelog = "https://github.com/utmapp/${pname}/releases/tag/v${version}";
mainProgram = "UTM";
license = licenses.apsl20;
platforms = platforms.darwin; # 11.3 is the minimum supported version as of UTM 4.
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ rrbutani ];
};
}