me
/
guix
Archived
1
0
Fork 0

gnu: guile-ssh: Fix cross-compilation.

* gnu/packages/ssh.scm (guile-ssh)[native-inputs]: Add guile.
master
Mathieu Othacehe 2020-02-18 11:44:16 +01:00
parent 38655d7b88
commit a0d19554cb
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 8 additions and 1 deletions

View File

@ -291,7 +291,8 @@ Additionally, various channel-specific options can be negotiated.")
("libtool" ,libtool)
("texinfo" ,texinfo)
("pkg-config" ,pkg-config)
("which" ,which)))
("which" ,which)
("guile" ,guile-2.2))) ;needed when cross-compiling.
(inputs `(("guile" ,guile-2.2)
("libssh" ,libssh)
("libgcrypt" ,libgcrypt)))
@ -306,6 +307,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))))))
@ -313,6 +317,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))))))