mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: et: Work around recursive module imports.
* gnu/packages/ssh.scm (et): Remove. * gnu/packages/terminals.scm (et): Add et.
This commit is contained in:
parent
02312f7bbe
commit
435739ff48
2 changed files with 30 additions and 30 deletions
|
@ -487,36 +487,6 @@ (define-public mosh
|
|||
responsive, especially over Wi-Fi, cellular, and long-distance links.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public et
|
||||
(package
|
||||
(name "et")
|
||||
(version "3.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/MisterTea/EternalTCP")
|
||||
(commit (string-append "et-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1m5caxckn2ihwp9s2pbyh5amxlpwr7yc54q8s0kb10fr52w2vfnm"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments `(#:tests? #f))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs `(("glog" ,glog)
|
||||
("gflags" ,gflags)
|
||||
("libsodium" ,libsodium)
|
||||
("protobuf" ,protobuf)))
|
||||
(synopsis "Remote shell that automatically reconnects")
|
||||
(description
|
||||
"Eternal Terminal (ET) is a remote shell that automatically reconnects
|
||||
without interrupting the session. Unlike SSH sessions, ET sessions will
|
||||
survive even network outages and IP changes. ET uses a custom protocol over
|
||||
TCP, not the SSH protocol.")
|
||||
(home-page "https://eternalterminal.dev/")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public dropbear
|
||||
(package
|
||||
(name "dropbear")
|
||||
|
|
|
@ -1081,6 +1081,36 @@ (define-public eternalterminal
|
|||
(@code{tmux -CC}).")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public et
|
||||
(package
|
||||
(name "et")
|
||||
(version "3.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/MisterTea/EternalTCP")
|
||||
(commit (string-append "et-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1m5caxckn2ihwp9s2pbyh5amxlpwr7yc54q8s0kb10fr52w2vfnm"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments `(#:tests? #f))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs `(("glog" ,glog)
|
||||
("gflags" ,gflags)
|
||||
("libsodium" ,libsodium)
|
||||
("protobuf" ,protobuf)))
|
||||
(synopsis "Remote shell that automatically reconnects")
|
||||
(description
|
||||
"Eternal Terminal (ET) is a remote shell that automatically reconnects
|
||||
without interrupting the session. Unlike SSH sessions, ET sessions will
|
||||
survive even network outages and IP changes. ET uses a custom protocol over
|
||||
TCP, not the SSH protocol.")
|
||||
(home-page "https://eternalterminal.dev/")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public wterm
|
||||
(package
|
||||
(name "wterm")
|
||||
|
|
Loading…
Reference in a new issue