mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: uwufetch: Manually create missing include dir.
* gnu/packages/admin.scm (uwufetch) [arguments]: Manually create missing include dir. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
daadcb7162
commit
1a2cf676df
1 changed files with 5 additions and 1 deletions
|
@ -4027,7 +4027,11 @@ you are running, what theme or icon set you are using, etc.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "uwufetch.c"
|
(substitute* "uwufetch.c"
|
||||||
(("(/usr(/local)?)(.*;)" all _ _ rest)
|
(("(/usr(/local)?)(.*;)" all _ _ rest)
|
||||||
(string-append #$output rest))))))))
|
(string-append #$output rest)))))
|
||||||
|
;; TODO this will be fixed in the next release of uwufetch
|
||||||
|
(add-before 'install 'make-include-dir
|
||||||
|
(lambda _
|
||||||
|
(mkdir-p (string-append #$output "/include")))))))
|
||||||
(inputs (list lshw
|
(inputs (list lshw
|
||||||
;; viu XXX not yet packaged in Guix
|
;; viu XXX not yet packaged in Guix
|
||||||
xwininfo))
|
xwininfo))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue