mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
utm: 4.5.4 -> 4.6.2 (#361170)
This commit is contained in:
commit
731d106d2d
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user