guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: gnu: guile-ssh: Fix cross-compilation.


From: guix-commits
Subject: branch core-updates updated: gnu: guile-ssh: Fix cross-compilation.
Date: Tue, 18 Feb 2020 11:25:05 -0500

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

mothacehe 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 bbb219b  gnu: guile-ssh: Fix cross-compilation.
bbb219b is described below

commit bbb219bdfeca80e39fa83813b55340a20849680f
Author: Mathieu Othacehe <address@hidden>
AuthorDate: Tue Feb 18 11:44:16 2020 +0100

    gnu: guile-ssh: Fix cross-compilation.
    
    This is a follow-up of ce59688d33ebddb52cea719efb1d8a51ea13adf0.
    
    * gnu/packages/ssh.scm (guile2.0-ssh)[native-inputs]: Replace guile from
    guile-ssh by guile-2.0,
    (guile3.0-ssh): replace guile from guile-ssh by guile-next.
---
 gnu/packages/ssh.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 7f56998..2efc6ed 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -296,7 +296,7 @@ Additionally, various channel-specific options can be 
negotiated.")
                      ("texinfo" ,texinfo)
                      ("pkg-config" ,pkg-config)
                      ("which" ,which)
-                     ("guile" ,guile-2.2)))
+                     ("guile" ,guile-2.2))) ;needed when cross-compiling.
     (inputs `(("guile" ,guile-2.2)
               ("libssh" ,libssh)
               ("libgcrypt" ,libgcrypt)))
@@ -311,6 +311,9 @@ libssh library.")
   (package
     (inherit guile-ssh)
     (name "guile2.0-ssh")
+    (native-inputs
+     `(("guile" ,guile-2.0) ;needed when cross-compiling.
+       ,@(alist-delete "guile" (package-native-inputs guile-ssh))))
     (inputs `(("guile" ,guile-2.0)
               ,@(alist-delete "guile" (package-inputs guile-ssh))))))
 
@@ -318,6 +321,9 @@ libssh library.")
   (package
     (inherit guile-ssh)
     (name "guile3.0-ssh")
+    (native-inputs
+     `(("guile" ,guile-next) ;needed when cross-compiling.
+       ,@(alist-delete "guile" (package-native-inputs guile-ssh))))
     (inputs `(("guile" ,guile-next)
               ,@(alist-delete "guile" (package-inputs guile-ssh))))))
 



reply via email to

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