mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: signal-desktop: Fix failure to load messages.
The needed library libstdc++ was no longer found with the gcc updates in Guix. * nongnu/packages/messaging.scm (signal-desktop)[inputs]: Remove gcc:lib. Add libgccjit and libstdc++. [phases]{wrap-where-patchelf-does-not-work}: Adjust for these inputs.
This commit is contained in:
parent
3d3b323390
commit
9d58bb6e3e
1 changed files with 4 additions and 2 deletions
|
@ -215,7 +215,8 @@ its core.")
|
|||
(list
|
||||
(string-append #$(this-package-input "nss") "/lib/nss")
|
||||
(string-append #$(this-package-input "eudev") "/lib")
|
||||
(string-append #$(this-package-input "gcc") "/lib")
|
||||
(string-append #$(this-package-input "libgccjit") "/lib")
|
||||
(string-append #$(this-package-input "libstdc++") "/lib")
|
||||
(string-append #$(this-package-input "mesa") "/lib")
|
||||
(string-append #$(this-package-input "libxkbfile") "/lib")
|
||||
(string-append #$(this-package-input "pulseaudio") "/lib")
|
||||
|
@ -235,10 +236,10 @@ its core.")
|
|||
eudev
|
||||
expat
|
||||
fontconfig
|
||||
`(,gcc "lib")
|
||||
glib
|
||||
gtk+
|
||||
libdrm
|
||||
libgccjit
|
||||
librsvg
|
||||
libsecret
|
||||
libx11
|
||||
|
@ -251,6 +252,7 @@ its core.")
|
|||
libxkbfile
|
||||
libxrandr
|
||||
libxshmfence
|
||||
(make-libstdc++ gcc)
|
||||
mesa
|
||||
nspr
|
||||
nss
|
||||
|
|
Loading…
Reference in a new issue