fteqw: unstable-2022-08-09 -> unstable-2023-08-03

+9 -8
+1 -1
pkgs/games/fteqw/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , fetchsvn 3 + , fetchFromGitHub 4 4 , gzip 5 5 , libvorbis 6 6 , libmad
+8 -7
pkgs/games/fteqw/generic.nix
··· 1 1 { lib 2 - , fetchsvn 2 + , fetchFromGitHub 3 3 , stdenv 4 4 , libopus 5 5 , xorg ··· 14 14 15 15 stdenv.mkDerivation { 16 16 inherit pname buildFlags buildInputs nativeBuildInputs postFixup; 17 - version = "unstable-2022-08-09"; 17 + version = "unstable-2023-08-03"; 18 18 19 - src = fetchsvn { 20 - url = "https://svn.code.sf.net/p/fteqw/code/trunk"; 21 - rev = "6303"; 22 - sha256 = "sha256-tSTFX59iVUvndPRdREayKpkQ+YCYKCMQe2PXZfnTgPQ="; 19 + src = fetchFromGitHub { 20 + owner = "fte-team"; 21 + repo = "fteqw"; 22 + rev = "3adec5d0a53ba9ae32a92fc0a805cf6d5ec107fb"; 23 + hash = "sha256-p/U02hwKI+YqlVXIS/7+gujknNDLr5L53unjvG5qLJU="; 23 24 }; 24 25 25 26 makeFlags = [ ··· 45 46 46 47 meta = with lib; { 47 48 inherit description; 48 - homepage = "https://fte.triptohell.info"; 49 + homepage = "https://fteqw.org"; 49 50 longDescription = '' 50 51 FTE is a game engine baed on QuakeWorld able to 51 52 play games such as Quake 1, 2, 3, and Hexen 2.