diff options
author | Rutger Helling <rhelling@mykolab.com> | 2019-03-21 10:53:24 +0100 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2019-03-21 10:56:16 +0100 |
commit | ebfe592fd433ce4850fb62b5390ca5d920d935d5 (patch) | |
tree | ec3c5a4ef2ddbf43db64bc426d454f2850a4331a /gnu | |
parent | 7d1494d979f9b9c417484499a5655062c75b326a (diff) | |
download | patches-ebfe592fd433ce4850fb62b5390ca5d920d935d5.tar patches-ebfe592fd433ce4850fb62b5390ca5d920d935d5.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/vulkan.scm | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index 7517d24b69..67f10eb641 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -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") |