diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-01-11 12:52:38 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-01-13 08:52:56 +0100 |
| commit | 0be86f973f5f0de4bb2857707e79f3832cd53155 (patch) | |
| tree | 3f2db0d138f1861ce2feae412f4687f198f824aa /gnu | |
| parent | 1c48571cb36ac1876d080968680c7a4fe061a65e (diff) | |
gnu: Add imgui-1.91.
* gnu/packages/toolkits.scm (imgui-1.91): New variable.
* gnu/packages/toolkits.scm (implot)[inputs]: Delete imgui; add
imgui-1.91.
Change-Id: I6a7e52207bf29f0d246659ca525d0183da7942ea
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 943e01d1b07..75844c4fa72 100644 --- a/gnu/packages/toolkits.scm +++ b/gnu/packages/toolkits.scm | |||
| @@ -144,6 +144,22 @@ applications, full-screen applications, and embedded platforms without | |||
| 144 | standard operating system features.") | 144 | standard operating system features.") |
| 145 | (license license:expat))) | 145 | (license license:expat))) |
| 146 | 146 | ||
| 147 | (define-public imgui-1.91 | ||
| 148 | (package | ||
| 149 | (inherit imgui) | ||
| 150 | (name "imgui") | ||
| 151 | (version "1.91.4") | ||
| 152 | (source (origin | ||
| 153 | (inherit (package-source imgui)) | ||
| 154 | (method git-fetch) | ||
| 155 | (uri (git-reference | ||
| 156 | (url "https://github.com/ocornut/imgui") | ||
| 157 | (commit (string-append "v" version)))) | ||
| 158 | (file-name (git-file-name name version)) | ||
| 159 | (sha256 | ||
| 160 | (base32 | ||
| 161 | "1lqcsyqj5m4d4g390x7n3jvjanrnsf64fgjxn51v1kc02dw28gpa")))))) | ||
| 162 | |||
| 147 | (define-public imgui-1.87 | 163 | (define-public imgui-1.87 |
| 148 | (package | 164 | (package |
| 149 | (inherit imgui) | 165 | (inherit imgui) |
| @@ -277,7 +293,7 @@ used either in header only mode or in implementation mode.") | |||
| 277 | '("implot.h" "implot_internal.h"))))) | 293 | '("implot.h" "implot_internal.h"))))) |
| 278 | #:tests? #f)) ; no test suite | 294 | #:tests? #f)) ; no test suite |
| 279 | (inputs | 295 | (inputs |
| 280 | (list imgui)) | 296 | (list imgui-1.91)) |
| 281 | (home-page "https://github.com/epezent/implot") | 297 | (home-page "https://github.com/epezent/implot") |
| 282 | (synopsis "Immediate-mode C++ plotting library for ImGui") | 298 | (synopsis "Immediate-mode C++ plotting library for ImGui") |
| 283 | (description "ImPlot is an immediate-mode, GPU-accelerated plotting | 299 | (description "ImPlot is an immediate-mode, GPU-accelerated plotting |
