utm: 4.5.4 -> 4.6.2 (#361170)

This commit is contained in:
Weijia Wang 2024-12-05 03:10:26 +01:00 committed by GitHub
commit 731d106d2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,24 @@
{ lib
, undmg
, makeWrapper
, fetchurl
, stdenvNoCC
{
lib,
undmg,
makeWrapper,
fetchurl,
stdenvNoCC,
}:
stdenvNoCC.mkDerivation rec {
pname = "utm";
version = "4.5.4";
version = "4.6.2";
src = fetchurl {
url = "https://github.com/utmapp/UTM/releases/download/v${version}/UTM.dmg";
hash = "sha256-GzwokK/q8S38lbOVhGgNaqbDAAryHJ9eBAAWGpuOQOE=";
hash = "sha256-M4R0uSAX0MUTUCsPtdRMPESFET9AEQBtjvM7eTcRCas=";
};
nativeBuildInputs = [ undmg makeWrapper ];
nativeBuildInputs = [
undmg
makeWrapper
];
sourceRoot = ".";
installPhase = ''
@ -62,6 +66,9 @@ stdenvNoCC.mkDerivation rec {
license = licenses.asl20;
platforms = platforms.darwin; # 11.3 is the minimum supported version as of UTM 4.
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ rrbutani wegank ];
maintainers = with maintainers; [
rrbutani
wegank
];
};
}