mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add imgui-1.87.
* gnu/packages/toolkits.scm (imgui-1.87): New variable.
This commit is contained in:
parent
107fbc375e
commit
c722bc034e
1 changed files with 17 additions and 1 deletions
|
@ -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 @@ (define-public imgui
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue