From fbfd2b93831978aadbb96f32cafdab997b04c6c6 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Sat, 22 Mar 2025 15:28:31 +0300 Subject: [PATCH] gnu: roxterm: Update to 3.15.3. * gnu/packages/terminals.scm (roxterm): Update to 3.15.3. [native-inputs]: Improve the style. [inputs]: Remove vte; add vte/gtk+-3. Change-Id: I41013333b3a190543a65dd2f39108cc31aff8d1f --- gnu/packages/terminals.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index ccf81e15f8b..39318110247 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1745,7 +1745,7 @@ and the ability to read and write via stdin and stdout.") (define-public roxterm (package (name "roxterm") - (version "3.15.0") + (version "3.15.3") (source (origin (method git-fetch) (uri (git-reference @@ -1754,15 +1754,19 @@ and the ability to read and write via stdin and stdout.") (file-name (git-file-name name version)) (sha256 (base32 - "19y4lxwj18pr231597rnyyk6f5hwvsajjv7w21wb5c62jjjyfrws")))) + "0jsdrs31mwpba851inwxpwnmy74k9nl4hs7bgbhba85dvqpw1xi2")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; No tests (native-inputs - (list docbook-xsl docbook-xml (list glib "bin") libxml2 libxslt + (list docbook-xsl + docbook-xml + (list glib "bin") + libxml2 + libxslt pkg-config)) (inputs - (list dbus dbus-glib gtk+ pcre vte)) + (list dbus dbus-glib gtk+ pcre vte/gtk+-3)) (synopsis "Terminal emulator") (description "This package provides a terminal emulator with hyperlink support. It's based on VTE and aimed at power users.")