all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ashvith Shetty <ashvithshetty10@gmail.com>
To: 73019@debbugs.gnu.org
Cc: Ashvith Shetty <ashvithshetty10@gmail.com>,
	Ashvith Shetty <ashvithshetty10@gmail.com>
Subject: [bug#73019] [PATCH v4 3/3] gnu: Add blackbox-terminal.
Date: Fri,  6 Sep 2024 09:16:40 +0530	[thread overview]
Message-ID: <12264924973ecb56b675e487f0fd6e1fd68950ed.1725594109.git.ashvithshetty10@gmail.com> (raw)
In-Reply-To: <cover.1725594109.git.ashvithshetty10@gmail.com>

* gnu/packages/gnome-xyz.scm (blackbox-terminal-0.14.0): New public variable.

Change-Id: I80ccebc05c89a233473c2fd0bfa324d9a426e52d
---
 gnu/packages/gnome-xyz.scm | 65 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index c5abcbb14d..5a2a5bf629 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -65,6 +65,7 @@ (define-module (gnu packages gnome-xyz)
   #:use-module (gnu packages ibus)
   #:use-module (gnu packages inkscape)
   #:use-module (gnu packages image)
+  #:use-module (gnu packages pcre)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-science)
@@ -1795,3 +1796,67 @@ (define-public libpqmarble
     (synopsis "Utility library for GNOME apps")
     (description "Utility library for GNOME apps.")
     (license license:gpl3)))
+
+(define-public blackbox-terminal
+  (package
+    (name "blackbox-terminal")
+    (version "0.14.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.gnome.org/raggesilver/blackbox")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0g7n2z0m7jjbn93zvx3ix7ph4mpncwq80cjjc2prp878cksj3g3r"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:glib-or-gtk? #t
+       #:configure-flags `("-Dblackbox_is_flatpak=false")
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'fix-gtk4-update-icon-cache
+                    (lambda _
+                      (substitute* "build-aux/meson/postinstall.py"
+                        (("gtk-update-icon-cache")
+                         "gtk4-update-icon-cache")))))))
+    (native-inputs (list pkg-config
+                         vala
+                         python-3.10
+                         desktop-file-utils ;for update-desktop-database
+                         `(,glib "bin") ;for glib-compile-schemas, etc.
+                         `(,gtk "bin") ;gtk4-update-icon-cache
+                         gettext-minimal))
+    (inputs (list gtk
+                  vte-gtk-4-with-sixel
+                  json-glib
+                  libpqmarble
+                  libadwaita
+                  pcre2
+                  ;; libxml2 and libgee are also required to build
+                  ;; but meson fails to catch it.
+                  libxml2
+                  libgee
+                  ;; The build won't fail without librsvg, but
+                  ;; since it is a dependency, it has been included.
+                  librsvg))
+    (home-page "https://gitlab.gnome.org/raggesilver/blackbox/")
+    (synopsis "Black Box is an elegant and customizable terminal for GNOME.")
+    (description
+     "An elegant and customizable terminal for GNOME:
+@itemize
+@item Color schemes - (Tilix compatible color scheme support)
+@item Theming - your color scheme can be used to style the whole app
+@item Background transparency
+@item Custom fonts, padding, and cell spacing
+@item Tabs
+@item Support for drag and dropping files
+@item Sixel (experimental)
+@item Customizable keybindings
+@item Toggle-able header bar
+@item Search your backlog with text or regex
+@item Context aware header bar - the header bar changes colors when running commands with sudo and in ssh sessions
+@item Desktop notifications - get notified when a command is finished in the background
+@item Customizable UI
+@end itemize")
+    (license license:gpl3)))
-- 
2.45.2





  parent reply	other threads:[~2024-09-06  3:50 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-24 17:51 bug#71185: `make check` test suite for Guix fails with five failure Ashvith Shetty
2024-09-04  4:07 ` Ashvith Shetty
2024-09-04  5:19 ` bug#71185: [PATCH 0/2] Add Black Box terminal Ashvith Shetty
2024-09-04  5:40   ` [bug#73019] [PATCH 1/2] gnu: Add libpqmarble Ashvith Shetty
2024-09-04  5:40   ` [bug#73019] [PATCH 2/2] gnu: Add blackbox-terminal Ashvith Shetty
2024-09-05  8:27   ` [bug#73019] [PATCH v2 0/3] Add Black Box terminal Ashvith Shetty
2024-09-05  8:27     ` [bug#73019] [PATCH v2 1/3] gnu: Add libpqmarble Ashvith Shetty
2024-09-05  8:27     ` [bug#73019] [PATCH v2 2/3] gnu: Add vte-gtk-4-experimental-sixel Ashvith Shetty
2024-09-05  8:27     ` [bug#73019] [PATCH v2 3/3] gnu: Add blackbox-terminal Ashvith Shetty
2024-09-05 11:53   ` [bug#73019] [PATCH v3 0/3] Add Black Box terminal Ashvith Shetty
2024-09-05 11:53     ` [bug#73019] [PATCH v3 1/3] gnu: Add libpqmarble Ashvith Shetty
2024-09-05 11:53     ` [bug#73019] [PATCH v3 2/3] gnu: Add vte-gtk-4-with-sixel Ashvith Shetty
2024-09-05 11:53     ` [bug#73019] [PATCH v3 3/3] gnu: Add blackbox-terminal Ashvith Shetty
2024-09-06  3:46   ` [bug#73019] [PATCH v4 0/3] Add Black Box terminal Ashvith Shetty
2024-09-06  3:46     ` [bug#73019] [PATCH v4 1/3] gnu: Add libpqmarble Ashvith Shetty
2024-09-06  3:46     ` [bug#73019] [PATCH v4 2/3] gnu: Add vte-gtk-4-with-sixel Ashvith Shetty
2024-09-06  3:46     ` Ashvith Shetty [this message]
2024-09-07 19:31   ` [bug#73019] [PATCH v5 0/3] Add Black Box terminal Ashvith Shetty
2024-09-07 19:31     ` [bug#73019] [PATCH v5 1/3] gnu: Add libpqmarble Ashvith Shetty
2024-09-07 19:31     ` [bug#73019] [PATCH v5 2/3] gnu: Add vte-gtk-4-with-sixel Ashvith Shetty
2024-09-07 19:31     ` [bug#73019] [PATCH v5 3/3] gnu: Add blackbox-terminal Ashvith Shetty
2024-09-04  5:31 ` bug#71185: `make check` test suite for Guix fails with five failure Ashvith Shetty

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=12264924973ecb56b675e487f0fd6e1fd68950ed.1725594109.git.ashvithshetty10@gmail.com \
    --to=ashvithshetty10@gmail.com \
    --cc=73019@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.