mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: gnome-shell: Store absolute file name of 'ibus-daemon'.
* gnu/packages/gnome.scm (gnome-shell)[arguments]: Add 'record-absolute-file-names' phase.
This commit is contained in:
parent
0e55864036
commit
2472cdec25
1 changed files with 7 additions and 0 deletions
|
@ -5764,6 +5764,13 @@ (define-public gnome-shell
|
|||
;; Convert the logo from SVG to PNG.
|
||||
(invoke "inkscape" "--export-png=data/theme/guix-logo.png"
|
||||
"data/theme/guix-logo.svg")))
|
||||
(add-before 'build 'record-absolute-file-names
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "js/misc/ibusManager.js"
|
||||
(("'ibus-daemon'")
|
||||
(string-append "'" (assoc-ref inputs "ibus")
|
||||
"/bin/ibus-daemon'")))
|
||||
#t))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue