mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: guile-ssh: Rename "guile2.2-ssh" to "guile-ssh".
* gnu/packages/ssh.scm (guile-ssh)[inputs]: Change GUILE-2.0 to GUILE-2.2. (guile2.2-ssh): Define using 'deprecated-package'. (guile2.0-ssh): New variable. * gnu/packages/package-management.scm (guix)[propagated-inputs]: Adjust accordingly.
This commit is contained in:
parent
2252f087d4
commit
4d8806c3d6
2 changed files with 7 additions and 4 deletions
|
@ -249,7 +249,7 @@ (define (copy arch)
|
|||
(propagated-inputs
|
||||
`(("gnutls" ,gnutls/guile-2.2) ;for 'guix download' & co.
|
||||
("guile-json" ,guile-json)
|
||||
("guile-ssh" ,guile2.2-ssh)))
|
||||
("guile-ssh" ,guile-ssh)))
|
||||
|
||||
(home-page "https://www.gnu.org/software/guix/")
|
||||
(synopsis "Functional package manager for installed software packages and versions")
|
||||
|
|
|
@ -265,7 +265,7 @@ (define-public guile-ssh
|
|||
("texinfo" ,texinfo)
|
||||
("pkg-config" ,pkg-config)
|
||||
("which" ,which)))
|
||||
(inputs `(("guile" ,guile-2.0)
|
||||
(inputs `(("guile" ,guile-2.2)
|
||||
("libssh" ,libssh)
|
||||
("libgcrypt" ,libgcrypt)))
|
||||
(synopsis "Guile bindings to libssh")
|
||||
|
@ -276,10 +276,13 @@ (define-public guile-ssh
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile2.2-ssh
|
||||
(deprecated-package "guile2.2-ssh" guile-ssh))
|
||||
|
||||
(define-public guile2.0-ssh
|
||||
(package
|
||||
(inherit guile-ssh)
|
||||
(name "guile2.2-ssh")
|
||||
(inputs `(("guile" ,guile-2.2)
|
||||
(name "guile2.0-ssh")
|
||||
(inputs `(("guile" ,guile-2.0)
|
||||
,@(alist-delete "guile" (package-inputs guile-ssh))))))
|
||||
|
||||
(define-public corkscrew
|
||||
|
|
Loading…
Reference in a new issue