mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Explicitly use OpenSSL 1.1 in more packages.
* gnu/packages/rust-apps.scm (rust-cargo-c)[inputs]: Change from OPENSSL to OPENSSL-1.1. * gnu/packages/security-token.scm (opensc)[inputs]: Likewise. * gnu/packages/spice.scm (spice, spice-gtk)[propagated-inputs]: Likewise. * gnu/packages/web.scm (serf)[propagated-inputs]: Likewise.
This commit is contained in:
parent
6197d977d7
commit
50134a2b4a
4 changed files with 5 additions and 5 deletions
|
@ -1659,7 +1659,7 @@ (define-public rust-cargo-c
|
|||
(native-inputs
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
(list curl libgit2-1.3 libssh2 openssl zlib))
|
||||
(list curl libgit2-1.3 libssh2 openssl-1.1 zlib))
|
||||
(home-page "https://github.com/lu-zero/cargo-c")
|
||||
(synopsis "Build and install C-compatible libraries")
|
||||
(description
|
||||
|
|
|
@ -310,7 +310,7 @@ (define-public opensc
|
|||
(string-append
|
||||
"DEFAULT_PCSC_PROVIDER=\"" libpcsclite "\"")))))))))
|
||||
(inputs
|
||||
(list readline openssl pcsc-lite ccid))
|
||||
(list readline openssl-1.1 pcsc-lite ccid))
|
||||
(native-inputs
|
||||
(list libxslt docbook-xsl pkg-config))
|
||||
(home-page "https://github.com/OpenSC/OpenSC/wiki")
|
||||
|
|
|
@ -149,7 +149,7 @@ (define-public spice-gtk
|
|||
;; These are required by the pkg-config files.
|
||||
gtk+
|
||||
pixman
|
||||
openssl))
|
||||
openssl-1.1))
|
||||
(inputs
|
||||
`(("glib-networking" ,glib-networking)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
|
@ -221,7 +221,7 @@ (define-public spice
|
|||
"1xd0xffw0g5vvwbq4ksmm3jjfq45f9dw20xpmi82g1fj9f7wy85k"))))
|
||||
(build-system gnu-build-system)
|
||||
(propagated-inputs
|
||||
(list openssl pixman spice-protocol))
|
||||
(list openssl-1.1 pixman spice-protocol))
|
||||
(inputs
|
||||
(list cyrus-sasl
|
||||
glib
|
||||
|
|
|
@ -1938,7 +1938,7 @@ (define-public serf
|
|||
(base32 "1k47gbgpp52049andr28y28nbwh9m36bbb0g8p0aka3pqlhjv72l"))))
|
||||
(build-system scons-build-system)
|
||||
(propagated-inputs
|
||||
(list apr apr-util openssl))
|
||||
(list apr apr-util openssl-1.1))
|
||||
(inputs
|
||||
(list ;; TODO: Fix build with gss.
|
||||
;;("gss" ,gss)
|
||||
|
|
Loading…
Reference in a new issue