woof-doom: fix update script and license (#477895)

This commit is contained in:
Aleksana
2026-01-08 06:09:23 +00:00
committed by GitHub
+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;