guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.
commit 625f82fb764d8b18c6e067096df8bcc14390d6d7
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Aug 25 10:34:02 2025 +0200
gnu: spirv-llvm-translator: Update to 18.1.10.
* gnu/packages/vulkan.scm (spirv-llvm-translator): Update to 18.1.10.
[native-inputs]: Add libffi, pkg-config.
Change-Id: Id7251c3594ae56533b0930f9ecd54d8db88b5ab6
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/vulkan.scm | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index 91d3e9b804..5ab1feb465 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -46,6 +46,7 @@
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gl)
+ #:use-module (gnu packages libffi)
#:use-module (gnu packages llvm)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -169,7 +170,7 @@ SPIR-V, aiming to emit GLSL or MSL that looks like
human-written code.")
(define-public spirv-llvm-translator
(package
(name "spirv-llvm-translator")
- (version "18.1.0")
+ (version "18.1.10")
(source
(origin
(method git-fetch)
@@ -178,7 +179,7 @@ SPIR-V, aiming to emit GLSL or MSL that looks like
human-written code.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0yfz02mlnf4ffn67g2ms0w8f7jgdsn438w2dbxd5mvcf5dk2x27b"))))
+ (base32 "11gmb1kw6j90hwcf6wxjz4pki653lyd8v8kphk7jq67gvw8dkiwy"))))
(build-system cmake-build-system)
(arguments
;; The test suite is known to fail on several architectures:
@@ -206,7 +207,14 @@ SPIR-V, aiming to emit GLSL or MSL that looks like
human-written code.")
(apply (assoc-ref gnu:%standard-phases 'check)
#:test-target "test" args))))))
(inputs (list llvm-18))
- (native-inputs (list clang-18 llvm-18 python-lit spirv-headers))
+ (native-inputs
+ (list
+ clang-18
+ libffi
+ llvm-18
+ pkg-config
+ python-lit
+ spirv-headers))
(home-page "https://github.com/KhronosGroup/SPIRV-LLVM-Translator")
(synopsis "Bi-directional translation between SPIR-V and LLVM IR")
(description