gnu: windowmaker: Fix invocation of 'wmsetbg'.
* gnu/packages/gnustep.scm (windowmaker)[arguments]: Add substitution of 40-character limit with a 107-character limit.
This commit is contained in:
parent
a225db5293
commit
fdb552bbd4
|
@ -60,7 +60,13 @@
|
||||||
(string-append "\"" bin "/wmaker.inst")))
|
(string-append "\"" bin "/wmaker.inst")))
|
||||||
(substitute* '("src/defaults.c" "WPrefs.app/Menu.c")
|
(substitute* '("src/defaults.c" "WPrefs.app/Menu.c")
|
||||||
(("\"wmsetbg")
|
(("\"wmsetbg")
|
||||||
(string-append "\"" bin "/wmsetbg")))))
|
(string-append "\"" bin "/wmsetbg")))
|
||||||
|
;; Add enough cells to the command character array to
|
||||||
|
;; allow passing our large path to the wmsetbg binary.
|
||||||
|
;; The path to wmsetbg in Guix requires 67 extra characters.
|
||||||
|
(substitute* "src/defaults.c"
|
||||||
|
(("len = strlen\\(text\\) \\+ 40;")
|
||||||
|
(string-append "len = strlen(text) + 107;")))))
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
'install 'wrap
|
'install 'wrap
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue