gnu: telescope: Update to 0.9.

* gnu/packages/web-browsers.scm (telescope): Update to 0.9.
[inputs]: Replace libevent with libgrapheme.

Change-Id: I1eb6567ddc5047d4d36f588086f14f69136588c4
Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
cage-dev@twistfold.it 2024-04-10 17:49:39 +02:00 committed by Christopher Baines
parent 37579d04dc
commit 8e3831eb12
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -99,6 +99,7 @@ (define-module (gnu packages web-browsers)
#:use-module (gnu packages readline) #:use-module (gnu packages readline)
#:use-module (gnu packages sdl) #:use-module (gnu packages sdl)
#:use-module (gnu packages sqlite) #:use-module (gnu packages sqlite)
#:use-module (gnu packages suckless)
#:use-module (gnu packages tcl) #:use-module (gnu packages tcl)
#:use-module (gnu packages text-editors) #:use-module (gnu packages text-editors)
#:use-module (gnu packages tls) #:use-module (gnu packages tls)
@ -951,21 +952,21 @@ (define-public tinmop
(define-public telescope (define-public telescope
(package (package
(name "telescope") (name "telescope")
(version "0.8.1") (version "0.9")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/omar-polo/telescope/releases/download/" (uri (string-append "https://github.com/omar-polo/telescope/releases/download/"
version "/telescope-" version ".tar.gz")) version "/telescope-" version ".tar.gz"))
(sha256 (sha256
(base32 "1fblm3mjddhjmcj1c065n9440n72ld037bdjdlyk1fpwd240m1pa")))) (base32 "1xbwdm3xcahwl6sjqx6f8hhx7nyzyygkjsnxglwxazp8zlmchqy9"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f)) ;no tests `(#:tests? #f)) ;no tests
(native-inputs (native-inputs
(list gettext-minimal pkg-config)) (list gettext-minimal pkg-config))
(inputs (inputs
(list libevent libressl ncurses)) (list libgrapheme libressl ncurses))
(home-page "https://telescope.omarpolo.com/") (home-page "https://telescope.omarpolo.com/")
(synopsis "Gemini client with a terminal interface") (synopsis "Gemini client with a terminal interface")
(description "Telescope is a w3m-like browser for Gemini.") (description "Telescope is a w3m-like browser for Gemini.")