diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-17 15:30:05 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-30 16:48:16 +0900 |
| commit | 73d91089335ba60bbb60d96db7e4b8984ab364d9 (patch) | |
| tree | e02e95f8b2d0972783d228ff589d1db3d1293879 /gnu/packages/vulkan.scm | |
| parent | 058f7b9f34af29f805fe757af454cf9606b80615 (diff) | |
gnu: vulkan-tools: Update to 1.4.313.0.
* gnu/packages/vulkan.scm (vulkan-tools): Update to 1.4.313.0.
Change-Id: Ic96b91a364836a312a1d5f5d58fd2978ac50522a
Diffstat (limited to 'gnu/packages/vulkan.scm')
| -rw-r--r-- | gnu/packages/vulkan.scm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index 7f270702304..1c64343c9bd 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -443,13 +443,13 @@ and the ICD.") (define-public vulkan-tools (package (name "vulkan-tools") - (version "1.4.309.0") + (version "1.4.313.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/KhronosGroup/Vulkan-Tools") - (commit (string-append "vulkan-sdk-" version)))) + (url "https://github.com/KhronosGroup/Vulkan-Tools") + (commit (string-append "vulkan-sdk-" version)))) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet #~(substitute* "tests/icd/mock_icd_tests.cpp" @@ -458,19 +458,20 @@ and the ICD.") "// ASSERT_EQ(std::string(driver_properties.driverInfo)"))) (sha256 (base32 - "0ywvvkra29y2cvw8i9laf4skn6cl7phrwshcc7z9dljb3il87cym")))) + "152sl309k2lw38x6r15ddyf55dn1wc26pf1idd73nd5x2ax5bd73")))) (build-system cmake-build-system) (inputs (list glslang libxrandr vulkan-loader wayland wayland-protocols)) (native-inputs (list googletest pkg-config python vulkan-volk vulkan-headers)) (arguments - `(#:configure-flags (list "-DBUILD_TESTS=ON") - #:phases (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "./tests/vulkan_tools_tests"))))))) + (list + #:configure-flags #~(list "-DBUILD_TESTS=ON") + #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "./tests/vulkan_tools_tests"))))))) (home-page "https://github.com/KhronosGroup/Vulkan-Tools") (synopsis "Tools and utilities for Vulkan") |
