This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d636feabcf gnu: vkquake: Update to 1.32.3.1.
d636feabcf is described below
commit d636feabcf52c93a5d66fa344e4b30f46be561e1
Author: Ada Stevenson <[email protected]>
AuthorDate: Tue Jul 1 17:42:20 2025 +0800
gnu: vkquake: Update to 1.32.3.1.
* gnu/packages/games.scm (vkquake): Update to 1.32.3.1.
[inputs]: Add spirv-tools, glslang. Set sdl2 version to latest.
Change-Id: If53549e2acaee2add01fae2d3914dec5b672ab58
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/games.scm | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index af9b7ebe66..7100445454 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -92,6 +92,7 @@
;;; Copyright © 2025 Andrew Wong <[email protected]>
;;; Copyright © 2025 Nigko Yerden <[email protected]>
;;; Copyright © 2025 Adrien 'neox' Bourmault <[email protected]>
+;;; Copyright © 2025 Ada Stevenson <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -8597,16 +8598,16 @@ some graphical niceities, and numerous bug-fixes and
other improvements.")
(package
(inherit quakespasm)
(name "vkquake")
- (version "1.01.0")
+ (version "1.32.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/Novum/vkQuake")
- (commit version)))
+ (url "https://github.com/Novum/vkQuake")
+ (commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1iwin8j5kbyrknbkhjgpy8nmm7pxqzr0daa9gn7p38qhg2mh0a39"))))
+ (base32 "0ch9rd6fckqs9bhh6z8qpdi2byra6lhk00y3vj4804351hpgmj0y"))))
(arguments
`(#:make-flags
(let ((vulkanlib (string-append (assoc-ref %build-inputs
@@ -8643,8 +8644,11 @@ 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)
- (replace "sdl2" sdl2-2.0)))
+ (prepend
+ glslang
+ spirv-tools
+ vulkan-loader
+ vulkan-headers)))
(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.")