summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-10-22 12:01:25 +0000
committerGitHub <noreply@github.com>2022-10-22 12:01:25 +0000
commit71e4896d63bfe8106b7e92b5c18165723b4249a9 (patch)
tree4f816b2423a83402953d98229b0d63d3814c2d9a /pkgs/os-specific
parent3c2db12b377d9c8c06659881e125422ff7ac94b2 (diff)
parent6c484dbae7337e89ad07232c5e8cc2f65cc34b7e (diff)
downloadnixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar.gz
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar.bz2
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar.lz
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar.xz
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.tar.zst
nixpkgs-71e4896d63bfe8106b7e92b5c18165723b4249a9.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/darwin/utm/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/os-specific/darwin/utm/default.nix b/pkgs/os-specific/darwin/utm/default.nix
index 7eae819a973..979780e3ca7 100644
--- a/pkgs/os-specific/darwin/utm/default.nix
+++ b/pkgs/os-specific/darwin/utm/default.nix
@@ -6,11 +6,11 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "utm";
-  version = "3.2.4";
+  version = "4.0.8";
 
   src = fetchurl {
     url = "https://github.com/utmapp/UTM/releases/download/v${version}/UTM.dmg";
-    sha256 = "sha256-ejUfL6UHqMusVfaglGlODKtFfKbNwzZ1LmRkcSzieso=";
+    sha256 = "sha256-a6GQyiW8pqw6fN3WVuTVUfnsl/qPtmzDxUvWNElli5k=";
   };
 
   nativeBuildInputs = [ undmg ];
@@ -41,12 +41,14 @@ stdenvNoCC.mkDerivation rec {
         - 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;
+    platforms = platforms.darwin; # 11.3 is the minimum supported version as of UTM 4.
     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
     maintainers = with maintainers; [ rrbutani ];
   };