mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
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:
parent
15056f47c2
commit
2b25bc03a1
1 changed files with 7 additions and 1 deletions
|
@ -168,4 +168,10 @@ (define-public imgui-1.86
|
|||
(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))))))
|
||||
|
|
Loading…
Reference in a new issue