tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
utm: 3.2.4 → 4.0.8
Rahul Butani
3 years ago
1ab41a22
d02d6719
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
darwin
utm
default.nix
+5
-3
pkgs/os-specific/darwin/utm/default.nix
···
6
6
7
7
stdenvNoCC.mkDerivation rec {
8
8
pname = "utm";
9
9
-
version = "3.2.4";
9
9
+
version = "4.0.8";
10
10
11
11
src = fetchurl {
12
12
url = "https://github.com/utmapp/UTM/releases/download/v${version}/UTM.dmg";
13
13
-
sha256 = "sha256-ejUfL6UHqMusVfaglGlODKtFfKbNwzZ1LmRkcSzieso=";
13
13
+
sha256 = "sha256-a6GQyiW8pqw6fN3WVuTVUfnsl/qPtmzDxUvWNElli5k=";
14
14
};
15
15
16
16
nativeBuildInputs = [ undmg ];
···
41
41
- Hardware accelerated virtualization using Hypervisor.framework and
42
42
QEMU
43
43
- Boot macOS guests with Virtualization.framework on macOS 12+
44
44
+
45
45
+
See https://docs.getutm.app/ for more information.
44
46
'';
45
47
homepage = "https://mac.getutm.app/";
46
48
changelog = "https://github.com/utmapp/${pname}/releases/tag/v${version}";
47
49
mainProgram = "UTM";
48
50
license = licenses.apsl20;
49
49
-
platforms = platforms.darwin;
51
51
+
platforms = platforms.darwin; # 11.3 is the minimum supported version as of UTM 4.
50
52
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
51
53
maintainers = with maintainers; [ rrbutani ];
52
54
};