Unverified Commit 731d106d authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

utm: 4.5.4 -> 4.6.2 (#361170)

parents 7cd59161 d448e039
Loading
Loading
Loading
Loading
+16 −9
Original line number Diff line number Diff line
{ 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
    ];
  };
}