mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: pidgin: Use system ssl certs.
* gnu/packages/messaging.scm (pidgin) [inputs]: Add nss-certs. [#:configure-flags]: Add “--with-system-ssl-certs”. Change-Id: I14ec36002b31b4de52871f065bd18c9d30eca275 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
cfa918ce15
commit
e3d6dc74ac
1 changed files with 6 additions and 0 deletions
|
@ -75,6 +75,7 @@ (define-module (gnu packages messaging)
|
|||
#:use-module (gnu packages bison)
|
||||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages certs)
|
||||
#:use-module (gnu packages code)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cpp)
|
||||
|
@ -1005,6 +1006,7 @@ (define-public pidgin
|
|||
network-manager
|
||||
nspr
|
||||
nss
|
||||
nss-certs
|
||||
pango
|
||||
perl
|
||||
python-2
|
||||
|
@ -1027,6 +1029,10 @@ (define-public pidgin
|
|||
"--disable-gevolution"
|
||||
"--enable-cap"
|
||||
"--enable-cyrus-sasl"
|
||||
;; Use nss-certs instead of bundled ones.
|
||||
(string-append "--with-system-ssl-certs="
|
||||
(assoc-ref %build-inputs "nss-certs")
|
||||
"/etc/ssl/certs")
|
||||
(string-append "--with-ncurses-headers="
|
||||
(assoc-ref %build-inputs "ncurses")
|
||||
"/include")
|
||||
|
|
Loading…
Reference in a new issue