me
/
guix
Archived
1
0
Fork 0

gnu: vulkan-loader: Remove unnecessary inputs.

* gnu/packages/vulkan.scm (vulkan-loader)[arguments]: Remove
-DBUILD_LAYERS=OFF.
[inputs]: Remove all.
[native-inputs]: Add libxrandr, vulkan-headers, wayland.
master
Rutger Helling 2019-03-21 10:53:24 +01:00
parent 7d1494d979
commit ebfe592fd4
No known key found for this signature in database
GPG Key ID: F3A727DB44FCCA36
1 changed files with 5 additions and 11 deletions

View File

@ -209,20 +209,14 @@ interpretation of the specifications for these languages.")
(substitute* "CMakeLists.txt" ((".*spirv_tools_commit_id.h.*") ""))
#t)))
#:configure-flags (list
"-DBUILD_LAYERS=OFF" ; FIXME: Fails to build.
"-DBUILD_TESTS=OFF" ; FIXME: Needs 'googletest' submodule.
(string-append "-DCMAKE_INSTALL_LIBDIR="
(assoc-ref %outputs "out") "/lib"))))
(inputs `(("glslang" ,glslang)
("libxcb" ,libxcb)
("libx11" ,libx11)
("libxrandr" ,libxrandr)
("mesa" ,mesa)
("spirv-tools" ,spirv-tools)
("vulkan-headers" ,vulkan-headers)
("wayland" ,wayland)))
(native-inputs `(("pkg-config" ,pkg-config)
("python" ,python)))
(native-inputs `(("libxrandr" ,libxrandr)
("pkg-config" ,pkg-config)
("python" ,python)
("vulkan-headers" ,vulkan-headers)
("wayland" ,wayland)))
(home-page
"https://github.com/KhronosGroup/Vulkan-Loader")
(synopsis "Khronos official ICD loader and validation layers for Vulkan")