mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: gsasl: Fix cross compiling.
Fixes <http://bugs.gnu.org/45545>. * gnu/packages/gsasl.scm (gsasl)[native-inputs]: Add libgcrypt.
This commit is contained in:
parent
5f6216d551
commit
c9156e811c
1 changed files with 4 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -96,6 +97,9 @@ (define-public gsasl
|
|||
("libntlm" ,libntlm)
|
||||
("mit-krb5" ,mit-krb5)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(;; Needed for cross compiling.
|
||||
("libgcrypt" ,libgcrypt)))
|
||||
(propagated-inputs
|
||||
;; Propagate GnuTLS because libgnutls.la reads `-lnettle', and Nettle is a
|
||||
;; propagated input of GnuTLS.
|
||||
|
|
Loading…
Reference in a new issue