[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/16: gnu: imgui: Update to 1.89.4.
From: |
guix-commits |
Subject: |
15/16: gnu: imgui: Update to 1.89.4. |
Date: |
Sat, 1 Apr 2023 20:10:01 -0400 (EDT) |
apteryx pushed a commit to branch staging
in repository guix.
commit f26f83c1a3090eeb95c14b83df22c31932a56078
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Apr 1 17:37:14 2023 -0400
gnu: imgui: Update to 1.89.4.
* gnu/packages/toolkits.scm (imgui): Update to 1.89.4.
---
gnu/packages/toolkits.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/toolkits.scm b/gnu/packages/toolkits.scm
index 23c1877edd..aee6c22e2d 100644
--- a/gnu/packages/toolkits.scm
+++ b/gnu/packages/toolkits.scm
@@ -32,7 +32,7 @@
(define-public imgui
(package
(name "imgui")
- (version "1.88")
+ (version "1.89.4")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -41,7 +41,7 @@
(file-name (git-file-name name version))
(sha256
(base32
- "13cw4hx55y5z678r558hv7znfz666wh0w849c5padnj4nkpbihdi"))
+ "1j79gsg9i969slygrwm0dp5mkzagglawxxagjpi3009wyp6lj6l8"))
(modules '((guix build utils)))
(snippet
;; Remove bundled fonts.
@@ -82,7 +82,9 @@
"imgui_widgets.cpp"
;; Include the supported backends.
"backends/imgui_impl_glfw.cpp"
- "backends/imgui_impl_sdl.cpp"
+ (if (file-exists? "backends/imgui_impl_sdl2.cpp")
+ "backends/imgui_impl_sdl2.cpp"
+ "backends/imgui_impl_sdl.cpp")
"backends/imgui_impl_opengl2.cpp"
"backends/imgui_impl_opengl3.cpp"
;; Include wrappers for C++ standard library (STL) and
- 03/16: gnu: blender: Use gexps and remove labels., (continued)
- 03/16: gnu: blender: Use gexps and remove labels., guix-commits, 2023/04/01
- 08/16: gnu: openboardview: Update to 9.95.0., guix-commits, 2023/04/01
- 13/16: gnu: Add imgui-1.87., guix-commits, 2023/04/01
- 14/16: gnu: openboardview: Use imgui-1.87., guix-commits, 2023/04/01
- 09/16: gnu: openboardview: Update home page., guix-commits, 2023/04/01
- 11/16: gnu: utf8-h: Install header under include/utf8 prefix., guix-commits, 2023/04/01
- 12/16: gnu: imgui: Use gexp output variables., guix-commits, 2023/04/01
- 16/16: gnu: gnunet: Update to 0.19.4., guix-commits, 2023/04/01
- 07/16: gnu: Add orangeduck-mpc., guix-commits, 2023/04/01
- 10/16: gnu: gnunet: Update home page., guix-commits, 2023/04/01
- 15/16: gnu: imgui: Update to 1.89.4.,
guix-commits <=