[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add roxterm.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add roxterm. |
Date: |
Fri, 23 Feb 2024 16:06:27 -0500 |
This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b993bfa94f gnu: Add roxterm.
b993bfa94f is described below
commit b993bfa94fe8dad320a51b26db3a7c1760535aba
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Thu Sep 7 23:24:42 2023 +0200
gnu: Add roxterm.
* gnu/packages/terminals.scm (roxterm): New variable.
Change-Id: I09b790a03214890fea0b5f87055989d80634d763
---
gnu/packages/terminals.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index ef187c6ced..e5acac202b 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1706,3 +1706,30 @@ ephemeral serial ports. It features automatic port
detection, port enumeration,
support for non-standard baud rates, the ability to wait for ports to appear,
and the ability to read and write via stdin and stdout.")
(license license:expat)))
+
+(define-public roxterm
+ (package
+ (name "roxterm")
+ (version "3.15.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/realh/roxterm.git")
+ (commit version)))
+ (sha256
+ (base32
+ "19y4lxwj18pr231597rnyyk6f5hwvsajjv7w21wb5c62jjjyfrws"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:tests? #f)) ; No tests
+ (native-inputs
+ (list docbook-xsl docbook-xml (list glib "bin") libxml2 libxslt
+ pkg-config))
+ (inputs
+ (list dbus dbus-glib gtk+ pcre vte))
+ (synopsis "ROXTerm terminal emulator")
+ (description "This package provides a terminal emulator with hyperlink
+support. It's based on VTE and aimed at power users.")
+ (home-page "https://realh.github.io/roxterm/")
+ ;; src/gresources.c is under LGPL 2.1+
+ (license (list license:gpl2+ license:lgpl2.1+))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add roxterm.,
guix-commits <=