mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: monado: Update to 24.0.0.
* gnu/packages/graphics.scm (monado): Update to 24.0.0. [source]: Switch to git-fetch. [build-system]: Switch to cmake-build-system. [arguments]: Remove configure-flags. Change-Id: Iba340dd539de40235e0f67b97ddf2b646296b883 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
0fdfe9d5dd
commit
cd16ef386c
1 changed files with 11 additions and 13 deletions
|
@ -29,7 +29,7 @@
|
|||
;;; Copyright © 2021, 2022 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de>
|
||||
;;; Copyright © 2022, 2023, 2024 John Kehayias <john.kehayias@protonmail.com>
|
||||
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2022, 2024 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2022 Tobias Kortkamp <tobias.kortkamp@gmail.com>
|
||||
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
|
||||
;;; Copyright © 2022 dan <i@dan.games>
|
||||
|
@ -2554,16 +2554,17 @@ (define-public tinygltf
|
|||
(define-public monado
|
||||
(package
|
||||
(name "monado")
|
||||
(version "21.0.0")
|
||||
(version "24.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://gitlab.freedesktop.org/" name "/"
|
||||
name "/-/archive/v" version "/"
|
||||
name "-v" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"0n04k7a8b0i8ga0kbzh7qxmvni1ijawgk98s83519vxg4d0yyjbq"))))
|
||||
(build-system meson-build-system)
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.freedesktop.org/monado/monado")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ix52kr4av259g4n06338qjrlfssi1v2dnb4pfr863wbyrbb8p4l"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
(list ffmpeg
|
||||
glslang
|
||||
|
@ -2577,9 +2578,6 @@ (define-public monado
|
|||
vulkan-loader))
|
||||
(native-inputs
|
||||
(list eigen pkg-config vulkan-headers))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "-Dinstall-active-runtime=false")))
|
||||
(home-page "https://monado.freedesktop.org/")
|
||||
(synopsis "OpenXR runtime")
|
||||
(description "Monado is an OpenXR runtime delivering immersive experiences
|
||||
|
|
Loading…
Reference in a new issue