guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#48017] [PATCH] - added 'telescope' gemini client with a terminal in


From: cage
Subject: [bug#48017] [PATCH] - added 'telescope' gemini client with a terminal interface.
Date: Sun, 25 Apr 2021 15:32:27 +0200

---
 gnu/packages/web-browsers.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 50c3e69321..8e8895ae2e 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -907,3 +907,26 @@ http, and https via third-party applications.")
 interface.")
     (home-page "https://www.autistici.org/interzona/tinmop.html";)
     (license license:gpl3+)))
+
+(define-public telescope
+  (package
+    (name "telescope")
+    (version "0.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/omar-polo/telescope/releases/download/0.1.1/telescope-";
+                          version
+                          ".tar.gz"))
+       (sha256 (base32 
"04rzpjfldq10xkhcr6dfniwscxkjbrfkd8mbm3327xgq3n0qjbis"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("ncurses"   ,ncurses)
+       ("libressl"  ,libressl)
+       ("libevent"  ,libevent)))
+    (arguments
+     `(#:tests? #f))
+    (synopsis "Gemini client with a terminal interface")
+    (description "Gemini client with a terminal interface")
+    (home-page "https://git.omarpolo.com/telescope/about/";)
+    (license license:x11)))
-- 
2.31.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]