Update archipelago (#424980)

This commit is contained in:
Pyrox 2025-07-15 23:43:58 -04:00 committed by GitHub
commit b8cf6031aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 3 deletions

View File

@ -10946,6 +10946,12 @@
githubId = 16307070;
name = "iosmanthus";
};
iqubic = {
email = "sophia.b.caspe@gmail.com";
github = "iqubic";
githubId = 22628816;
name = "Sophia Caspe";
};
iquerejeta = {
github = "iquerejeta";
githubId = 31273774;

View File

@ -7,10 +7,10 @@
}:
let
pname = "archipelago";
version = "0.6.1";
version = "0.6.2";
src = fetchurl {
url = "https://github.com/ArchipelagoMW/Archipelago/releases/download/${version}/Archipelago_${version}_linux-x86_64.AppImage";
hash = "sha256-8mPlR5xVnHL9I0rV4bMFaffSJv7dMlCcPHrLkM/pyVU=";
hash = "sha256-DdlfHb8iTCfTGGBUYQeELYh2NF/2GcamtuJzeYb2A5M=";
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };
@ -40,7 +40,10 @@ appimageTools.wrapType2 {
changelog = "https://github.com/ArchipelagoMW/Archipelago/releases/tag/${version}";
license = lib.licenses.mit;
mainProgram = "archipelago";
maintainers = with lib.maintainers; [ pyrox0 ];
maintainers = with lib.maintainers; [
pyrox0
iqubic
];
platforms = lib.platforms.linux;
};
}