archon-lite: init at 9.3.85
Co-authored-by: sophiebsw <sophiebsw@gmail.com> Co-authored-by: hekazu <henri.peurasaari@helsinki.fi>
This commit is contained in:
co-authored by
sophiebsw
parent
77c8c84946
commit
ea358ade83
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user