woof-doom: fix update script and license

This commit is contained in:
Keenan Weaver
2026-01-07 16:31:00 -06:00
parent ebad0c952d
commit 13fb510235
+7 -2
View File
@@ -55,13 +55,18 @@ stdenv.mkDerivation (finalAttrs: {
(lib.cmakeBool "WITH_DISCORD_RPC" withDiscordRpc)
];
passthru.updateScript = nix-update-script { };
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"woof_(.*)"
];
};
meta = {
description = "Doom source port based on Boom/MBF";
homepage = "https://github.com/fabiangreffrath/woof";
changelog = "https://github.com/fabiangreffrath/woof/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.gpl2Only;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ keenanweaver ];
mainProgram = "woof";
platforms = lib.platforms.unix;