mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-27 19:41:50 +02:00
gnu: tmate: Update to 2.4.0-0.ac91951.
* gnu/packages/terminals.scm (tmate): Update to ac919516f4f1b10ec928e20b3a5034d18f609d68 commit. [source]: Build from the latest commit. [arguments] <phases>: Add 'fix-msgpack-version. [inputs]: Remove msgpack-3; add msgpack-c. Change-Id: I2841515e453f33e7c1a9fa1b8874e29cc0eca3dc
This commit is contained in:
@@ -1085,25 +1085,40 @@ usable with any list--including files, command history, processes and more.")
|
|||||||
(define-public tmate
|
(define-public tmate
|
||||||
(package
|
(package
|
||||||
(name "tmate")
|
(name "tmate")
|
||||||
(version "2.4.0")
|
;; XXX: The project looks like abandoned, where 2.4.0 was released in 2019
|
||||||
|
;; and the latest commit on master's HEAD is from 2022, see:
|
||||||
|
;; <https://github.com/tmate-io/tmate/issues/306>.
|
||||||
|
(properties '((commit . "ac919516f4f1b10ec928e20b3a5034d18f609d68")
|
||||||
|
(revision . "0")))
|
||||||
|
(version (git-version "2.4.0"
|
||||||
|
(assoc-ref properties 'revision)
|
||||||
|
(assoc-ref properties 'commit)))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/tmate-io/tmate")
|
(url "https://github.com/tmate-io/tmate")
|
||||||
(commit version)))
|
(commit (assoc-ref properties 'commit))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1gwmwiq0fc0bl4calnzp53hp3wyr66qvsagz37jchwhcc1za1pmp"))))
|
||||||
"0x5c31yq7ansmiy20a0qf59wagba9v3pq97mlkxrqxn4n1gcc6vi"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs (list libevent libssh msgpack-3 ncurses))
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-msgpack-version
|
||||||
|
(lambda _
|
||||||
|
(substitute* "configure.ac"
|
||||||
|
(("msgpack >= 1.1.0")
|
||||||
|
"msgpack-c >= 1.1.0")))))))
|
||||||
|
(inputs (list libevent libssh msgpack-c ncurses))
|
||||||
(native-inputs (list autoconf automake pkg-config))
|
(native-inputs (list autoconf automake pkg-config))
|
||||||
(home-page "https://tmate.io/")
|
(home-page "https://tmate.io/")
|
||||||
(synopsis "Terminal sharing application")
|
(synopsis "Terminal sharing application")
|
||||||
(description "tmate is a terminal sharing application that allows you to
|
(description
|
||||||
share your terminal with other users over the Internet. tmate is a fork of
|
"tmate is a terminal sharing application that allows you to share your
|
||||||
tmux.")
|
terminal with other users over the Internet. tmate is a fork of tmux.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public kitty
|
(define-public kitty
|
||||||
|
|||||||
Reference in New Issue
Block a user