From 105e0258d0cca37572a18305efaf7cdd2e0b1988 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sat, 19 Aug 2023 16:36:21 +0200 Subject: [PATCH 1/2] openarena: fix desktop item `desktopName` attribute --- pkgs/games/openarena/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/openarena/default.nix b/pkgs/games/openarena/default.nix index a90a6752ac8b..30f221902f77 100644 --- a/pkgs/games/openarena/default.nix +++ b/pkgs/games/openarena/default.nix @@ -106,7 +106,7 @@ stdenv.mkDerivation (finalAttrs: { exec = "openarena"; icon = "openarena"; comment = "A fast-paced 3D first-person shooter, similar to id Software Inc.'s Quake III Arena"; - desktopName = "openarena"; + desktopName = "OpenArena"; categories = [ "Game" "ActionGame" ]; }) ]; From b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303 Mon Sep 17 00:00:00 2001 From: TheBrainScrambler <34945377+TheBrainScrambler@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:15:00 +0000 Subject: [PATCH 2/2] ioquake3: fix incorrect license gpl2Only -> gpl2Plus --- pkgs/games/quake3/ioquake/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix index 73ee3bbb86a8..7161b9474f24 100644 --- a/pkgs/games/quake3/ioquake/default.nix +++ b/pkgs/games/quake3/ioquake/default.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation { meta = { homepage = "https://ioquake3.org/"; description = "A fast-paced 3D first-person shooter, a community effort to continue supporting/developing id's Quake III Arena"; - license = lib.licenses.gpl2Only; + license = lib.licenses.gpl2Plus; mainProgram = "ioquake3"; maintainers = with lib.maintainers; [ abbradar drupol eelco rvolosatovs ]; platforms = lib.platforms.linux;