parent
b8b7622d2b
commit
f770be590d
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; 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 © 2020, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
|
@ -132,6 +132,22 @@ applications, full-screen applications, and embedded platforms without
|
||||||
standard operating system features.")
|
standard operating system features.")
|
||||||
(license license:expat)))
|
(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
|
(define-public imgui-1.86
|
||||||
(package
|
(package
|
||||||
(inherit imgui)
|
(inherit imgui)
|
||||||
|
|
Reference in New Issue