guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: GnuTLS: Build with Guile 3.


From: guix-commits
Subject: 01/02: gnu: GnuTLS: Build with Guile 3.
Date: Tue, 17 Mar 2020 05:41:27 -0400 (EDT)

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

commit 67a3c8ed15f62a39f8684ee9c8dda024de9296a9
Author: Marius Bakke <address@hidden>
AuthorDate: Tue Mar 17 10:39:47 2020 +0100

    gnu: GnuTLS: Build with Guile 3.
    
    This is a follow-up to commit b6bee63bed4f013064c0d902e7c8b83ed7514ade.
    
    * gnu/packages/tls.scm (gnutls)[inputs]: Change from GUILE-2.2 to GUILE-3.0.
    (guile3.0-gnutls): Rename to ...
    (guile2.2-gnutls): ... this.  Use GUILE-2.2.
    (guile3.0-gnutls): New variable.
---
 gnu/packages/tls.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index f94c2a1..f84d29e 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -229,7 +229,7 @@ living in the same process.")
        ("datefudge" ,datefudge)                   ;tests rely on 'datefudge'
        ("util-linux" ,util-linux)))               ;one test needs 'setsid'
     (inputs
-     `(("guile" ,guile-2.2)))
+     `(("guile" ,guile-3.0)))
     (propagated-inputs
      ;; These are all in the 'Requires.private' field of gnutls.pc.
      `(("libtasn1" ,libtasn1)
@@ -266,14 +266,16 @@ required structures.")
     (inputs `(("unbound" ,unbound)
               ,@(package-inputs gnutls)))))
 
-(define-public guile3.0-gnutls
+(define-public guile2.2-gnutls
   (package
     (inherit gnutls)
-    (name "guile3.0-gnutls")
-    (inputs `(("guile" ,guile-next)
+    (name "guile2.2-gnutls")
+    (inputs `(("guile" ,guile-2.2)
               ,@(alist-delete "guile"
                               (package-inputs gnutls))))))
 
+(define-public guile3.0-gnutls gnutls)
+
 (define-public openssl
   (package
    (name "openssl")



reply via email to

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