xcbeautify: 1.4.0 -> 2.4.1

This commit is contained in:
Siddarth Kumar 2024-07-12 23:43:12 +05:30
parent 836c11a6f6
commit 03d1840025
No known key found for this signature in database
GPG Key ID: 599D10112BF518DB

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "xcbeautify";
version = "1.4.0";
version = "2.4.1";
src = fetchurl {
url = "https://github.com/cpisciotta/xcbeautify/releases/download/${version}/xcbeautify-${version}-${stdenv.hostPlatform.darwinArch}-apple-macosx.zip";
hash = lib.getAttr stdenv.hostPlatform.darwinArch {
arm64 = "sha256-4b4mXT5IfNOS8iOrZASDhTrmOehG4mePcoiKxR+IdZk=";
x86_64 = "sha256-adEfAK7n3Q/Yd1deyJx7htX7hZaGDztEeBv4z2A0wzg=";
arm64 = "sha256-EjBhpw9qsOEweXOepQVPNL/hCxj12Z5gyvv7neNEeMU=";
x86_64 = "sha256-Zb54g0cMWB6ouzLPUd+VTCicp+bVb5aDKxNSB3eGaZU=";
};
};
@ -30,12 +30,13 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Little beautifier tool for xcodebuild";
homepage = "https://github.com/cpisciotta/xcbeautify";
license = licenses.mit;
platforms = platforms.darwin;
license = lib.licenses.mit;
platforms = lib.platforms.darwin;
mainProgram = "xcbeautify";
maintainers = with maintainers; [ siddarthkay ];
maintainers = with lib.maintainers; [ siddarthkay ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}