mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: linphone-desktop: Fix linphone accounts functionality.
The Linphone accounts were not able to do TLS authentication against the Linphone servers, and multiple plugins used by the Linphone accounts were not loaded. This change should fix this. * gnu/packages/linphone.scm (linphone-desktop)[phases](post-install): Modify phase. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
7162e5b882
commit
6aaa8269b8
1 changed files with 5 additions and 1 deletions
|
@ -839,10 +839,14 @@ (define-public linphone-desktop
|
|||
;; Remove unnecessary Qt configuration file.
|
||||
(delete-file (string-append out "/bin/qt.conf"))
|
||||
;; Not using the FHS exposes an issue where the client
|
||||
;; refers to its own "share" directory, which lacks files
|
||||
;; refers to its own directories, which lacks files
|
||||
;; installed by the dependencies.
|
||||
(symlink (string-append liblinphone "/lib")
|
||||
(string-append out "/lib"))
|
||||
(symlink (string-append liblinphone "/share/sounds")
|
||||
(string-append out "/share/sounds"))
|
||||
(symlink (string-append liblinphone "/share/linphone/rootca.pem")
|
||||
(string-append out "/share/linphone/rootca.pem"))
|
||||
(mkdir-p (dirname grammar-dest))
|
||||
(symlink (string-append liblinphone "/share/belr/grammars")
|
||||
grammar-dest)))))))
|
||||
|
|
Loading…
Reference in a new issue