gnu: dropbear: Build with X11 forwarding support.
* gnu/packages/ssh.scm (dropbear)[phases] {enable-x11-forwarding}: New phase.
This commit is contained in:
parent
bf9c98b11d
commit
6fc33d91ba
1 changed files with 13 additions and 1 deletions
|
@ -530,7 +530,19 @@ responsive, especially over Wi-Fi, cellular, and long-distance links.")
|
||||||
#:configure-flags #~(list "--disable-bundled-libtom")
|
#:configure-flags #~(list "--disable-bundled-libtom")
|
||||||
;; The test suite runs an instance of dropbear, which requires a
|
;; The test suite runs an instance of dropbear, which requires a
|
||||||
;; resolver ("Error resolving: Servname not supported for ai_socktype").
|
;; resolver ("Error resolving: Servname not supported for ai_socktype").
|
||||||
#:tests? #f))
|
#:tests? #f
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'enable-x11-forwarding
|
||||||
|
(lambda _
|
||||||
|
;; The following patch was retrieved from:
|
||||||
|
;; https://github.com/mkj/dropbear/commit/
|
||||||
|
;; 0292aacdf0aa57d03f2a3ab7e53cf650e6f29389.
|
||||||
|
(substitute* "svr-x11fwd.c"
|
||||||
|
(("DROPBEAR_CHANNEL_PRIO_INTERACTIVE")
|
||||||
|
"DROPBEAR_PRIO_LOWDELAY"))
|
||||||
|
(substitute* "default_options.h"
|
||||||
|
(("#define DROPBEAR_X11FWD 0")
|
||||||
|
"#define DROPBEAR_X11FWD 1")))))))
|
||||||
(inputs (list libtomcrypt libtommath zlib))
|
(inputs (list libtomcrypt libtommath zlib))
|
||||||
(synopsis "Small SSH server and client")
|
(synopsis "Small SSH server and client")
|
||||||
(description "Dropbear is a relatively small SSH server and
|
(description "Dropbear is a relatively small SSH server and
|
||||||
|
|
Reference in a new issue