gnu: mygui: Update to 3.4.2.

* gnu/packages/game-development.scm (mygui): Update to 3.4.2.
(mygui-gl)[inputs]: Add libglvnd, and a union of sdl2 and sdl2-image.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-16 02:00:02 +02:00
parent 7967da1088
commit d23ced7cc1
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1713,7 +1713,7 @@ (define-public ois
(define-public mygui (define-public mygui
(package (package
(name "mygui") (name "mygui")
(version "3.4.1") (version "3.4.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -1722,8 +1722,7 @@ (define-public mygui
(commit (string-append "MyGUI" version)))) (commit (string-append "MyGUI" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0gkfahz118gpqa2906cjb3d4w8g13rv8v3ma7s0ml9l5cci785f8"))))
"1gyd4bzm6qqpqw6is065qs5c729gl6rp989bnkygha6q4s371vz6"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:tests? #f ; No test target '(#:tests? #f ; No test target
@ -1770,7 +1769,10 @@ (define-public mygui-gl
(inputs (inputs
(modify-inputs (package-inputs mygui) (modify-inputs (package-inputs mygui)
(delete "ogre") (delete "ogre")
(prepend mesa glu))) (prepend glu
libglvnd ; for find_package(… GLX)
mesa ; for find_package(… OpenGL …)
(sdl-union (list sdl2 sdl2-image)))))
(synopsis "Fast, flexible and simple GUI (OpenGL backend)"))) (synopsis "Fast, flexible and simple GUI (OpenGL backend)")))
(define-public openmw (define-public openmw