Merge pull request #208280 from jakubpawlowicz/fix/openxcom-update

openxcom: 1.0.0.2019.10.18 -> 1.0.0.2023.08.12

authored by Pol Dellaiera and committed by GitHub 09dd1d6b feddd1dc

+31 -17
+31 -17
pkgs/games/openxcom/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 1 + { boost 4 2 , cmake 5 - , pkg-config 3 + , fetchFromGitHub 4 + , lib 6 5 , libGLU 7 6 , libGL 8 - , zlib 9 7 , openssl 10 - , yaml-cpp 11 - , boost 8 + , pkg-config 12 9 , SDL 13 10 , SDL_image 14 11 , SDL_mixer 15 12 , SDL_gfx 13 + , stdenv 14 + , yaml-cpp 15 + , zlib 16 16 }: 17 17 18 - stdenv.mkDerivation rec { 18 + stdenv.mkDerivation { 19 19 pname = "openxcom"; 20 - version = "1.0.0.2019.10.18"; 20 + version = "1.0.0.2023.08.12"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "OpenXcom"; 24 24 repo = "OpenXcom"; 25 - rev = "f9853b2cb8c8f741ac58707487ef493416d890a3"; 26 - hash = "sha256-APv49ZT94oeM4KVKGtUdoQ1t8Ly8lsocr+FqXiRXbk0="; 25 + rev = "bd632cc8569a57fdc3b68ce53f6ea850422ec5ac"; 26 + hash = "sha256-ouYZ4rAEluqeP+ZUrbEZwCpXCw0cZLWsf1GbIE3jaTc="; 27 27 }; 28 28 29 - nativeBuildInputs = [ cmake pkg-config ]; 29 + nativeBuildInputs = [ 30 + cmake 31 + pkg-config 32 + ]; 30 33 31 - buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost yaml-cpp libGLU libGL openssl zlib ]; 34 + buildInputs = [ 35 + boost 36 + libGL 37 + libGLU 38 + SDL 39 + SDL_gfx 40 + SDL_image 41 + SDL_mixer 42 + yaml-cpp 43 + openssl 44 + zlib 45 + ]; 32 46 33 - meta = with lib; { 47 + meta = { 34 48 description = "Open source clone of UFO: Enemy Unknown"; 35 49 homepage = "https://openxcom.org"; 36 - maintainers = with maintainers; [ cpages ]; 37 - platforms = platforms.linux; 38 - license = licenses.gpl3; 50 + license = lib.licenses.gpl3; 51 + maintainers = with lib.maintainers; [ cpages ]; 52 + platforms = lib.platforms.linux; 39 53 }; 40 54 }