guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: gnutls: Make p11-kit a propagated inpu


From: guix-commits
Subject: branch core-updates updated: gnu: gnutls: Make p11-kit a propagated input.
Date: Tue, 17 Nov 2020 16:38:31 -0500

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 8a59448  gnu: gnutls: Make p11-kit a propagated input.
8a59448 is described below

commit 8a594487700ddd2d6c293cc5e302ce74f3f56b70
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Tue Nov 17 19:28:09 2020 +0000

    gnu: gnutls: Make p11-kit a propagated input.
    
    Because p11-kit appears in the gnutls.pc file, it needs to be a propagated
    input.
    
    This was a regression introduced in 28a13226fd5cd08b3eb090151c0753424c3f6eb4
    which broke things like HTTPS support in curl, which then broke Git clones
    from repositories using HTTPS.
    
    * gnu/packages/tls.scm (gnutls)[inputs]: Move p11-kit from here.
    [propagated-inputs]: To here.
---
 gnu/packages/tls.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index a3d0070..9cb5ac9 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -255,18 +255,18 @@ living in the same process.")
              `(("datefudge" ,datefudge)))         ;tests rely on 'datefudge'
        ("util-linux" ,util-linux)))               ;one test needs 'setsid'
     (inputs
-     `(("guile" ,guile-3.0)
-       ,@(let ((system (or (%current-target-system)
-                           (%current-system))))
-           (if (string-prefix? "mips64el" system)
-               '()
-               `(("p11-kit" ,p11-kit))))))
+     `(("guile" ,guile-3.0)))
     (propagated-inputs
      ;; These are all in the 'Requires.private' field of gnutls.pc.
      `(("libtasn1" ,libtasn1)
        ("libidn2" ,libidn2)
        ("nettle" ,nettle)
-       ("zlib" ,zlib)))
+       ("zlib" ,zlib)
+       ,@(let ((system (or (%current-target-system)
+                           (%current-system))))
+           (if (string-prefix? "mips64el" system)
+               '()
+               `(("p11-kit" ,p11-kit))))))
     (home-page "https://www.gnu.org/software/gnutls/";)
     (synopsis "Transport layer security library")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]