gnu: vulkan-tools: Update to 1.1.102.

* gnu/packages/vulkan.scm (vulkan-tools): Update to 1.1.102.
[arguments]: Remove "-DBUILD_ICD=OFF" configure flag.
master
Rutger Helling 2019-03-07 10:40:26 +01:00
parent 7e0f4cb154
commit 9776417246
No known key found for this signature in database
GPG Key ID: F3A727DB44FCCA36
1 changed files with 3 additions and 4 deletions

View File

@ -244,7 +244,7 @@ and the ICD.")
(define-public vulkan-tools
(package
(name "vulkan-tools")
(version "1.1.101")
(version (package-version vulkan-headers))
(source
(origin
(method git-fetch)
@ -254,7 +254,7 @@ and the ICD.")
(file-name (git-file-name name version))
(sha256
(base32
"0qms8xjl0i9ajrckxkcq7rj28zjby4gbr1vz8xxkmgfbani8mai4"))))
"0a8vmgyn7an21bb9vxba9laf9ghvk905vn7rm8frdl8qr2b7vyw3"))))
(build-system cmake-build-system)
(inputs
`(("glslang" ,glslang)
@ -268,8 +268,7 @@ and the ICD.")
("python" ,python)))
(arguments
`(#:tests? #f ; No tests.
#:configure-flags (list "-DBUILD_ICD=off" ; FIXME: Doesn't build.
(string-append "-DGLSLANG_INSTALL_DIR="
#:configure-flags (list (string-append "-DGLSLANG_INSTALL_DIR="
(assoc-ref %build-inputs "glslang")))))
(home-page
"https://github.com/KhronosGroup/Vulkan-Tools")