mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nonguix: multiarch-container: Symlink EGL configurations.
* nonguix/multiarch-container.scm (make-internal-script): Symlink EGL configurations. Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
This commit is contained in:
parent
1c419ee1a8
commit
8c08d0bbe5
1 changed files with 12 additions and 0 deletions
|
@ -517,6 +517,18 @@ application."
|
||||||
((,union64 "share/drirc.d") . "/usr/share/drirc.d")
|
((,union64 "share/drirc.d") . "/usr/share/drirc.d")
|
||||||
((,union64 "share/fonts") . "/run/current-system/profile/share/fonts")
|
((,union64 "share/fonts") . "/run/current-system/profile/share/fonts")
|
||||||
((,union64 "etc/fonts") . "/etc/fonts")))
|
((,union64 "etc/fonts") . "/etc/fonts")))
|
||||||
|
(for-each
|
||||||
|
(cut file-symlink <> "/usr/share/egl/egl_external_platform.d")
|
||||||
|
(append-map
|
||||||
|
get-files
|
||||||
|
`((,union32 "share/egl/egl_external_platform.d")
|
||||||
|
(,union64 "share/egl/egl_external_platform.d"))))
|
||||||
|
(for-each
|
||||||
|
(cut file-symlink <> "/usr/share/glvnd/egl_vendor.d")
|
||||||
|
(append-map
|
||||||
|
get-files
|
||||||
|
`((,union32 "share/glvnd/egl_vendor.d")
|
||||||
|
(,union64 "share/glvnd/egl_vendor.d"))))
|
||||||
(for-each
|
(for-each
|
||||||
(cut file-symlink <> "/usr/share/vulkan/icd.d")
|
(cut file-symlink <> "/usr/share/vulkan/icd.d")
|
||||||
(append-map
|
(append-map
|
||||||
|
|
Loading…
Reference in a new issue