diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-01 17:35:23 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 15:11:53 -0400 |
commit | f770be590d9aaeb8308dddfb20490beca1a15990 (patch) | |
tree | a994e934225b7e7821f0349179c0fb0f627d8419 /gnu | |
parent | b8b7622d2b02e3bbe56e5d52ae10517815cbfc23 (diff) |
gnu: Add imgui-1.87.
* gnu/packages/toolkits.scm (imgui-1.87): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/toolkits.scm | 18 |
1 files changed, 17 insertions, 1 deletions
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 <maxim.cournoyer@gmail.com> +;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020, 2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com> ;;; @@ -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) |