diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-05-22 15:30:39 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-05-26 22:36:07 +0200 |
commit | cc8550ef120200b4bd27000b3deed41febc64c4c (patch) | |
tree | ff7f23497ab7a35ac615fcd5401ae641a62f9e06 | |
parent | d840f3b74cb77367299d09382fe15a810d9c3c04 (diff) |
gnu: vulkan-loader: Update to 1.2.140.
* gnu/packages/vulkan.scm (vulkan-loader): Update to 1.2.140.
[arguments]: Remove #:phases.
-rw-r--r-- | gnu/packages/vulkan.scm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index 2ed32f1118..30a89499fc 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -162,7 +162,7 @@ interpretation of the specifications for these languages.") (define-public vulkan-loader (package (name "vulkan-loader") - (version "1.1.121") + (version "1.2.140") (source (origin (method git-fetch) @@ -172,17 +172,10 @@ interpretation of the specifications for these languages.") (file-name (git-file-name name version)) (sha256 (base32 - "1gbrppfxrncvva30fikgzm7f15xs527sb4lf1sswdyxj3h5cw741")))) + "0rhyz0qgp0i7pcx6wlvgwy7j33d4cs0xx39f0b6igpfk0vk70r1w")))) (build-system cmake-build-system) (arguments `(#:tests? #f ;FIXME: 23/39 tests fail. Try "tests/run_all_tests.sh". - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'remove-spirv-tools-commit-id - (lambda* (#:key inputs #:allow-other-keys) - ;; Remove lines trying to build in a git commit id. - (substitute* "CMakeLists.txt" ((".*spirv_tools_commit_id.h.*") "")) - #t))) #:configure-flags (list "-DBUILD_TESTS=OFF" ; FIXME: Needs 'googletest' submodule. (string-append "-DCMAKE_INSTALL_LIBDIR=" |