diff options
author | Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | 2021-03-01 22:23:32 +0100 |
---|---|---|
committer | Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | 2021-03-01 23:01:48 +0100 |
commit | baec2a0846496c15f972f91cbdad085130c25940 (patch) | |
tree | 52bc65f03cf0ea7d94722fc413b161f224fba4ed /gnu/packages/vulkan.scm | |
parent | 35814292b6246a26bf938415919782d4de394a95 (diff) | |
download | guix-baec2a0846496c15f972f91cbdad085130c25940.tar guix-baec2a0846496c15f972f91cbdad085130c25940.tar.gz |
gnu: glslang: Use 11.0.0 as git-fetch tag.
* gnu/packages/vulkan.scm (glslang)[source]: Use tag 11.0.0.
From the README.md: "The versioning scheme is being improved, and you might
notice some differences. This is currently WIP, but will be coming soon."
In this curse, they moved the tag 10-11.0.0 to just 11.0.0.
See also <https://github.com/KhronosGroup/glslang/issues/2450>.
Diffstat (limited to 'gnu/packages/vulkan.scm')
-rw-r--r-- | gnu/packages/vulkan.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index 1a0d0d7d63..ac91f8451c 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -156,7 +156,9 @@ SPIR-V, aiming to emit GLSL or MSL that looks like human-written code.") (method git-fetch) (uri (git-reference (url "https://github.com/KhronosGroup/glslang") - (commit version))) + ;; Tag "10-11.0.0" was moved to "11.0.0". + ;; FIXME: Use (commit version) on next update. + (commit "11.0.0"))) (sha256 (base32 "14mn2awswl022ls75mfpsnpsl0ai0jgfbqj3sxcsqawyj5f432py")) |