mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: alacritty: Fix loading of libxkbcommon-x11.so.
* gnu/packages/terminals.scm (alacritty)[arguments]: Handle libxkbcommon-x11.so in the ‘add-absolute-library-references’ phase. This fixes this error: thread 'main' panicked at /tmp/guix-build-alacritty-0.13.1.drv-0/source/guix-vendor/rust-xkbcommon-dl-0.4.1.tar.gz/src/x11.rs:59:28: Library libxkbcommon-x11.so could not be loaded. note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Change-Id: Ifbf19b4962bc3d9eeba6acdf32ca66b0c662f493 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
646810ab6a
commit
93aefca7ba
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
||||
;;; Copyright © 2024 Suhail <suhail@bayesians.ca>
|
||||
;;; Copyright © 2024 Clément Lassieur <clement@lassieur.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1604,6 +1605,8 @@ (define-public alacritty
|
|||
(search-input-file inputs (string-append "lib/" all)))
|
||||
(("libwayland-[[:alpha:]]*\\.so" all)
|
||||
(search-input-file inputs (string-append "lib/" all)))
|
||||
(("libxkbcommon-x11\\.so")
|
||||
(search-input-file inputs "lib/libxkbcommon-x11.so"))
|
||||
(("libxkbcommon\\.so")
|
||||
(search-input-file inputs "lib/libxkbcommon.so")))))
|
||||
(replace 'install
|
||||
|
|
Loading…
Reference in a new issue