apteryx pushed a commit to branch staging
in repository guix.

commit c722bc034ed5f8de39a001658d6907cde67f1468
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sat Apr 1 17:35:23 2023 -0400

    gnu: Add imgui-1.87.
    
    * gnu/packages/toolkits.scm (imgui-1.87): New variable.
---
 gnu/packages/toolkits.scm | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/toolkits.scm b/gnu/packages/toolkits.scm
index a29ab01154..23c1877edd 100644
--- a/gnu/packages/toolkits.scm
+++ b/gnu/packages/toolkits.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2022 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2022, 2023 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2020, 2022 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2022 John Kehayias <[email protected]>
 ;;;
@@ -132,6 +132,22 @@ applications, full-screen applications, and embedded 
platforms without
 standard operating system features.")
     (license license:expat)))
 
+(define-public imgui-1.87
+  (package
+    (inherit imgui)
+    (name "imgui")
+    (version "1.87")
+    (source (origin
+              (inherit (package-source imgui))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ocornut/imgui";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "10qil22s5qak3as41787iz273sibpq1bq66bakgn7yvhj5fym6hz"))))))
+
 (define-public imgui-1.86
   (package
     (inherit imgui)

Reply via email to