gnu: eternalterminal: Update to 6.2.4.
* gnu/packages/terminals.scm (eternalterminal): Update to 6.2.4. [arguments]: Add -DDISABLE_VCPKG=1 to #:configure-flags, remove #:phases. [inputs]: Remove gflags, add openssl, zlib and curl. [native-inputs]: Remove. Signed-off-by: Christopher Baines <mail@cbaines.net>
parent
5c4a1d8c54
commit
746298e54f
|
@ -77,6 +77,7 @@
|
||||||
#:use-module (gnu packages crates-io)
|
#:use-module (gnu packages crates-io)
|
||||||
#:use-module (gnu packages crates-graphics)
|
#:use-module (gnu packages crates-graphics)
|
||||||
#:use-module (gnu packages crypto)
|
#:use-module (gnu packages crypto)
|
||||||
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages dlang)
|
#:use-module (gnu packages dlang)
|
||||||
#:use-module (gnu packages docbook)
|
#:use-module (gnu packages docbook)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
|
@ -1385,7 +1386,7 @@ comfortably in a pager or editor.
|
||||||
(define-public eternalterminal
|
(define-public eternalterminal
|
||||||
(package
|
(package
|
||||||
(name "eternalterminal")
|
(name "eternalterminal")
|
||||||
(version "6.0.13")
|
(version "6.2.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1394,21 +1395,11 @@ comfortably in a pager or editor.
|
||||||
(commit (string-append "et-v" version))))
|
(commit (string-append "et-v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0sb1hypg2276y8c2a5vivrkcxp70swddvhnd9h273if3kv6j879r"))))
|
(base32 "13vhr701j85ga37d53339bxgrf9fqa6z1zcp6s3ly5bb8p7lyvzm"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("-DBUILD_TEST=ON")
|
'(#:configure-flags '("-DBUILD_TEST=ON" "-DDISABLE_VCPKG=1")))
|
||||||
#:phases
|
(inputs (list libsodium protobuf openssl zlib curl))
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'insert-googletests
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(let ((tests (assoc-ref inputs "googletest")))
|
|
||||||
(copy-recursively tests "external/googletest"))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
|
||||||
(list gflags libsodium protobuf))
|
|
||||||
(native-inputs
|
|
||||||
`(("googletest" ,(package-source googletest))))
|
|
||||||
(home-page "https://mistertea.github.io/EternalTerminal/")
|
(home-page "https://mistertea.github.io/EternalTerminal/")
|
||||||
(synopsis "Remote shell that reconnects without interrupting the session")
|
(synopsis "Remote shell that reconnects without interrupting the session")
|
||||||
(description "@dfn{Eternal Terminal} (ET) is a remote shell that
|
(description "@dfn{Eternal Terminal} (ET) is a remote shell that
|
||||||
|
|
Reference in New Issue