mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: vulkan-loader: Update to 1.3.232.
* gnu/packages/vulkan.scm (vulkan-loader): Update to 1.3.232.
This commit is contained in:
parent
c65bc18f87
commit
4daa9c353f
1 changed files with 6 additions and 3 deletions
|
@ -43,6 +43,7 @@ (define-module (gnu packages vulkan)
|
|||
#:use-module (gnu packages wine)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
;; Note: Remember to change vulkan-loader version when bumping this.
|
||||
(define %vulkan-sdk-version "sdk-1.3.231.1")
|
||||
|
||||
(define-public spirv-headers
|
||||
|
@ -209,17 +210,19 @@ (define-public vulkan-headers
|
|||
(define-public vulkan-loader
|
||||
(package
|
||||
(name "vulkan-loader")
|
||||
(version %vulkan-sdk-version)
|
||||
;; XXX: Take a slightly newer commit to fix a test failure on i686:
|
||||
;; https://github.com/KhronosGroup/Vulkan-Loader/pull/1036
|
||||
(version "sdk-1.3.232")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/KhronosGroup/Vulkan-Loader")
|
||||
(commit version)))
|
||||
(commit "v1.3.232")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0jx3hbmk0rlmh8mrwhn3l6ph6by3035pbndvm5ppikpljkf9lrhx"))))
|
||||
"0w69sh669sx9pwlvv2rv92ds2hm2rbzsa6qqcmd8kcad0qfq7dz2"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
|
|
Loading…
Reference in a new issue