archon-lite: init at 9.3.85 (#534071)

This commit is contained in:
dotlambda
2026-06-22 12:35:38 -07:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -26094,6 +26094,12 @@
githubId = 13762043;
matrix = "@sophie:nue.soopy.moe";
};
sophiebsw = {
name = "Sophia";
email = "nixpkgs@drifter.dev";
github = "sophiebsw";
githubId = 4594464;
};
sophronesis = {
email = "oleksandr.buzynnyi@gmail.com";
github = "sophronesis";
+33
View File
@@ -0,0 +1,33 @@
{
lib,
appimageTools,
fetchurl,
nix-update-script,
}:
let
pname = "archon-lite";
version = "9.3.85";
src = fetchurl {
url = "https://github.com/RPGLogs/Uploaders-archon-lite/releases/download/v${version}/archon-lite-v${version}.AppImage";
hash = "sha256-ooNvgbtV6HKgzRLgHZul92NLnEB8oX6fHL6iwfHajVA=";
};
in
appimageTools.wrapType2 {
inherit pname version src;
passthru.updateScript = nix-update-script { };
meta = {
description = "Application for uploading MMORPG combat logs";
homepage = "https://www.archon.gg/download";
downloadPage = "https://github.com/RPGLogs/Uploaders-archon-lite/releases/tag/v${version}";
license = lib.licenses.unfree; # no license listed
mainProgram = "archon-lite";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
hekazu
sophiebsw
];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}