mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: ungoogled-chromium: Use 'search-auxiliary-file'.
Fixes a regression introduced in
076e825dc5
whereby "guix build
ungoogled-chromium" would fail with:
canonicalize-path: No such file or directory: "aux-files/chromium/master-preferences.json"
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Use
'search-auxiliary-file' for "master-preferences.json". For some reason,
on Guile 3.0.8, 'local-file' would have its (current-source-directory)
expand to #f.
This commit is contained in:
parent
aff352a5f2
commit
c334b7c52f
1 changed files with 3 additions and 1 deletions
|
@ -757,7 +757,9 @@ (define-public ungoogled-chromium
|
|||
(resources (string-append lib "/resources"))
|
||||
(preferences
|
||||
;; This file contains defaults for new user profiles.
|
||||
#$(local-file "aux-files/chromium/master-preferences.json"))
|
||||
#$(local-file
|
||||
(search-auxiliary-file
|
||||
"chromium/master-preferences.json")))
|
||||
(gtk+ (assoc-ref inputs "gtk+"))
|
||||
(xdg-utils (assoc-ref inputs "xdg-utils")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue