gnu: imgui-1.86: Adjust make-flags.

* gnu/packages/toolkits.scm (imgui-1.86)[arguments]: Remove the
"-DImDrawIdx=unsigned int" make-flag which breaks the display of mangohud, the
only dependent.
This commit is contained in:
John Kehayias 2023-06-27 20:49:34 -04:00
parent 15056f47c2
commit 2b25bc03a1
No known key found for this signature in database
GPG Key ID: 499097AE5EA815D9

View File

@ -168,4 +168,10 @@ standard operating system features.")
(file-name (git-file-name name version))
(sha256
(base32
"02a7b05zrka20jhzag2jb4jl624i1m456bsv69jb9zgys2p9dv1n"))))))
"02a7b05zrka20jhzag2jb4jl624i1m456bsv69jb9zgys2p9dv1n"))))
(arguments
(substitute-keyword-arguments (package-arguments imgui)
((#:make-flags flags ''())
;; Remove the "-DImDrawIdx=unsigned int" make-flag as this breaks
;; mangohud, the only user of this version.
#~(delete "-DImDrawIdx=unsigned int" #$flags))))))