artix-games-launcher: init at 2.20 (#437315)

This commit is contained in:
Sandro
2025-11-04 10:23:54 +00:00
committed by GitHub
2 changed files with 41 additions and 0 deletions
+6
View File
@@ -12915,6 +12915,12 @@
github = "jthulhu";
githubId = 23179762;
};
jtliang24 = {
name = "Jiatao Liang";
email = "jtliang24@gmail.com";
github = "jtliang24";
githubId = 170479425;
};
jtobin = {
email = "jared@jtobin.io";
github = "jtobin";
@@ -0,0 +1,35 @@
{
appimageTools,
stdenv,
fetchurl,
lib,
}:
let
pname = "artix-games-launcher";
version = "2.20";
src = fetchurl {
url = "https://web.archive.org/web/20250924101414/https://launch.artix.com/latest/Artix_Games_Launcher-x86_64.AppImage";
hash = "sha256-8eVXOm5g92wErWa6lbTXrCL04MWYlObjonHJk+oUI3E=";
};
appimageContents = appimageTools.extract {
inherit pname version src;
};
in
appimageTools.wrapType2 {
inherit pname version src;
extraInstallCommands = ''
mkdir -p $out/share/applications
install -m 444 -D ${appimageContents}/ArtixGamesLauncher.desktop $out/share/applications/ArtixGamesLauncher.desktop
install -m 444 -D ${appimageContents}/ArtixLogo.png $out/share/icons/ArtixLogo.png
'';
meta = {
description = "Launcher for games by Artix Entertainment";
homepage = "https://www.artix.com/downloads/artixlauncher";
license = lib.licenses.unfree;
mainProgram = "artix-game-launcher";
maintainers = with lib.maintainers; [ jtliang24 ];
platforms = [ "x86_64-linux" ];
};
}