~ruther/guix-local

fdb552bbd44e35d335ee1d430ffe5b0fc4bc237e — Kei Kebreau 9 years ago a225db5
gnu: windowmaker: Fix invocation of 'wmsetbg'.

* gnu/packages/gnustep.scm (windowmaker)[arguments]: Add substitution of
40-character limit with a 107-character limit.
1 files changed, 7 insertions(+), 1 deletions(-)

M gnu/packages/gnustep.scm
M gnu/packages/gnustep.scm => gnu/packages/gnustep.scm +7 -1
@@ 60,7 60,13 @@
                        (string-append "\"" bin "/wmaker.inst")))
                     (substitute* '("src/defaults.c" "WPrefs.app/Menu.c")
                       (("\"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
                  'install 'wrap
                  (lambda* (#:key outputs #:allow-other-keys)