gnu: spirv-headers: Replace version with %vulkan-sdk-version.

* gnu/packages/vulkan.scm (spirv-headers) [version]: Replace with
%vulkan-sdk-version variable.

Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
dan 2022-11-19 23:02:38 +08:00 committed by Marius Bakke
parent 7d5e045a69
commit 8915e43ce0
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -43,16 +43,18 @@ (define-module (gnu packages vulkan)
#:use-module (gnu packages wine)
#:use-module (gnu packages xorg))
(define %vulkan-sdk-version "sdk-1.3.231.1")
(define-public spirv-headers
(package
(name "spirv-headers")
(version "1.3.231.1")
(version %vulkan-sdk-version)
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KhronosGroup/SPIRV-Headers")
(commit (string-append "sdk-" version))))
(commit version)))
(sha256
(base32
"0z8b485hryya2g0jxv7amwg3fjj7pchbgnsa5ldf5fwgh5js0icm"))