mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
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:
parent
3407a47c2a
commit
2bbfd7e4ae
1 changed files with 4 additions and 2 deletions
|
@ -42,16 +42,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"))
|
||||
|
|
Loading…
Reference in a new issue