diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-11 23:12:16 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch) | |
| tree | be11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/ssh.scm | |
| parent | 4ba653e637940b147ea5cdcf45397b8ac7f3d014 (diff) | |
gnu: Reference the inherited inputs values.
This commit was made by running this command:
sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm
… and then reverting individual hunks where the change would trigger unbound
variable warnings or other issues (such as ‘native-inputs’ is bound in the
body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined
just above).
Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
Diffstat (limited to 'gnu/packages/ssh.scm')
| -rw-r--r-- | gnu/packages/ssh.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 6a505f47141..14dad4fda49 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm | |||
| @@ -354,7 +354,7 @@ Additionally, various channel-specific options can be negotiated.") | |||
| 354 | (package | 354 | (package |
| 355 | (inherit openssh) | 355 | (inherit openssh) |
| 356 | (name "openssh-sans-x") | 356 | (name "openssh-sans-x") |
| 357 | (inputs (modify-inputs (package-inputs openssh) | 357 | (inputs (modify-inputs inputs |
| 358 | (delete "xauth"))) | 358 | (delete "xauth"))) |
| 359 | (synopsis "OpenSSH client and server without X11 support"))) | 359 | (synopsis "OpenSSH client and server without X11 support"))) |
| 360 | 360 | ||
| @@ -427,7 +427,7 @@ Additionally, various channel-specific options can be negotiated.") | |||
| 427 | (string-replace-substring file "/hpn" "/")))) | 427 | (string-replace-substring file "/hpn" "/")))) |
| 428 | (find-files mandir))))))))) | 428 | (find-files mandir))))))))) |
| 429 | (native-inputs | 429 | (native-inputs |
| 430 | (modify-inputs (package-native-inputs openssh) | 430 | (modify-inputs native-inputs |
| 431 | (append autoconf automake))) | 431 | (append autoconf automake))) |
| 432 | (synopsis "High performance SSH/SCP client, and server") | 432 | (synopsis "High performance SSH/SCP client, and server") |
| 433 | (description "HPN-SSH is a series of modifications to OpenSSH, the predominant implementation | 433 | (description "HPN-SSH is a series of modifications to OpenSSH, the predominant implementation |
| @@ -439,7 +439,7 @@ of the ssh protocol. It was originally developed to address performance issues | |||
| 439 | (inherit hpn-ssh) | 439 | (inherit hpn-ssh) |
| 440 | (name "hpn-ssh-sans-x") | 440 | (name "hpn-ssh-sans-x") |
| 441 | (inputs | 441 | (inputs |
| 442 | (modify-inputs (package-inputs hpn-ssh) | 442 | (modify-inputs inputs |
| 443 | (delete "xauth"))) | 443 | (delete "xauth"))) |
| 444 | (synopsis "High performance SSH/SCP client, and server without X11 support"))) | 444 | (synopsis "High performance SSH/SCP client, and server without X11 support"))) |
| 445 | 445 | ||
| @@ -525,11 +525,11 @@ libssh library.") | |||
| 525 | (inherit guile-ssh) | 525 | (inherit guile-ssh) |
| 526 | (name "guile2.2-ssh") | 526 | (name "guile2.2-ssh") |
| 527 | (native-inputs | 527 | (native-inputs |
| 528 | (modify-inputs (package-native-inputs guile-ssh) | 528 | (modify-inputs native-inputs |
| 529 | (delete "guile") | 529 | (delete "guile") |
| 530 | (prepend guile-2.2 ;needed when cross-compiling. | 530 | (prepend guile-2.2 ;needed when cross-compiling. |
| 531 | ))) | 531 | ))) |
| 532 | (inputs (modify-inputs (package-inputs guile-ssh) | 532 | (inputs (modify-inputs inputs |
| 533 | (replace "guile" guile-2.2))))) | 533 | (replace "guile" guile-2.2))))) |
| 534 | 534 | ||
| 535 | (define-public corkscrew | 535 | (define-public corkscrew |
