gnu: spirv-headers: Update to 1.5.3.
* gnu/packages/vulkan.scm (spirv-headers): Update to 1.5.3.
This commit is contained in:
parent
a64eeaf755
commit
936b7906b0
1 changed files with 5 additions and 11 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -42,7 +43,7 @@
|
||||||
(define-public spirv-headers
|
(define-public spirv-headers
|
||||||
(package
|
(package
|
||||||
(name "spirv-headers")
|
(name "spirv-headers")
|
||||||
(version "1.3.7")
|
(version "1.5.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -51,18 +52,11 @@
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m56smanfcczjfif4yfcqhjj4d4sc088kwg6dgia8fwdsjavdm4d"))
|
"069sivqajp7z4p44lmrz23lvf237xpkjxd4lzrg27836pwqcz9bj"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;; No tests
|
`(#:tests? #f)) ;no tests
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(invoke "cmake" "-E" "copy_directory"
|
|
||||||
"../source/include/spirv"
|
|
||||||
(string-append (assoc-ref outputs "out")
|
|
||||||
"/include/spirv")))))))
|
|
||||||
(home-page "https://github.com/KhronosGroup/SPIRV-Headers")
|
(home-page "https://github.com/KhronosGroup/SPIRV-Headers")
|
||||||
(synopsis "Machine-readable files from the SPIR-V Registry")
|
(synopsis "Machine-readable files from the SPIR-V Registry")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue