summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheBrainScrambler <34945377+TheBrainScrambler@users.noreply.github.com>2023-08-14 16:15:00 +0000
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-08-19 17:04:04 +0200
commitb3e3d4037d6fb200b3a10ea446bc6f7d6b22a303 (patch)
tree7a97e5efb25ca099e546d4700a30932b4a6de8ca
parent105e0258d0cca37572a18305efaf7cdd2e0b1988 (diff)
downloadnixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar.gz
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar.bz2
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar.lz
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar.xz
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.tar.zst
nixpkgs-b3e3d4037d6fb200b3a10ea446bc6f7d6b22a303.zip
ioquake3: fix incorrect license gpl2Only -> gpl2Plus
-rw-r--r--pkgs/games/quake3/ioquake/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix
index 73ee3bbb86a..7161b9474f2 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;