From 6c2bc0ab6b6aeecd1371db3a14741910339dce45 Mon Sep 17 00:00:00 2001 From: John Kehayias Date: Mon, 27 Jan 2025 15:28:40 -0500 Subject: [PATCH] gnu: vkquake: Use compatible SDL2 version (sdl2-2.0). This fixes a runtime error of "QUAKE ERROR: Your version of SDL library is incompatible with me. You need a library version in the line of 2.0.6". * gnu/packages/games.scm (vkquake)[inputs]: Replace sdl2 with sdl2-2.0. Change-Id: Iab65796a85a8a8247f565323e5cb1e2c9ae8329e Reported-by: meaty on #guix Change-Id: Ifc4d86014a5a9e8e584edbde8057c7929d534303 --- gnu/packages/games.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ae40e5786e5b604a20a3e95c5f9018304818d395..af819ba2f5949d9cb7e721c3a4f385fceb767b0d 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8075,7 +8075,8 @@ some graphical niceities, and numerous bug-fixes and other improvements.") ,@(strip-keyword-arguments '(#:make-flags #:phases) (package-arguments quakespasm)))) (inputs (modify-inputs (package-inputs quakespasm) - (prepend vulkan-headers vulkan-loader))) + (prepend vulkan-headers vulkan-loader) + (replace "sdl2" sdl2-2.0))) (description "vkquake is a modern engine for id software's Quake 1. It includes support for 64 bit CPUs, custom music playback, a new sound driver, some graphical niceities, and numerous bug-fixes and other improvements.")