diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-05-08 01:47:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-05-08 01:51:44 +0200 |
commit | cc2792dada44c873d073c16c0c1127540a15a86f (patch) | |
tree | 753d3d5c9cfbab803f513a469818ec179b04713d | |
parent | a6b4d213db997f65b8a73b0a27d53a6c6c022e41 (diff) | |
download | patches-cc2792dada44c873d073c16c0c1127540a15a86f.tar patches-cc2792dada44c873d073c16c0c1127540a15a86f.tar.gz |
gnu: gsasl: Propagate GnuTLS.
* gnu/packages/gsasl.scm (gsasl): Move GnuTLS to `propagated-inputs'.
-rw-r--r-- | gnu/packages/gsasl.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gsasl.scm b/gnu/packages/gsasl.scm index fb5712a7b0..8b5b2b59f6 100644 --- a/gnu/packages/gsasl.scm +++ b/gnu/packages/gsasl.scm @@ -83,10 +83,12 @@ SMTP/IMAP servers. GSS consists of a library and a manual.") (build-system gnu-build-system) (inputs `(("libidn" ,libidn) ("libntlm" ,libntlm) - ("gnutls" ,gnutls) ("gss" ,gss) - ("zlib" ,guix:zlib) - )) + ("zlib" ,guix:zlib))) + (propagated-inputs + ;; Propagate GnuTLS because libgnutls.la reads `-lnettle', and Nettle is a + ;; propagated input of GnuTLS. + `(("gnutls" ,gnutls))) (synopsis "Simple Authentication and Security Layer library") (description "GNU SASL is an implementation of the Simple Authentication and Security |