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.
This commit is contained in:
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

View File

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