summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2025-12-14 00:24:44 -0600
committerjgart <jgart@dismail.de>2025-12-14 00:25:10 -0600
commitf9548eef30f77602a07c3e48d7edfb03b4ef9245 (patch)
tree7b74f5d6217a0df764581b197447c2416740b556
parent7bb3ec9632711fe70ed9f04a76840ed7d6e91afb (diff)
gnu: Add sxmobar.
* gnu/packages/hare-apps.scm (sxmobar): New variable. Change-Id: I55f46c5f1ee875f5fc8025df0859715696842b20
-rw-r--r--gnu/packages/hare-apps.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/hare-apps.scm b/gnu/packages/hare-apps.scm
index 64dc2287a50..d505a9492b6 100644
--- a/gnu/packages/hare-apps.scm
+++ b/gnu/packages/hare-apps.scm
@@ -18,6 +18,7 @@
(define-module (gnu packages hare-apps)
#:use-module (gnu packages hare-xyz)
+ #:use-module (gnu packages man)
#:use-module (guix build-system hare)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
@@ -60,3 +61,25 @@ The state will transition following every accepted transition. If there is no
more available transition, the state goes back to the initial position.")
(license license:agpl3+)))
+(define-public sxmobar
+ (package
+ (name "sxmobar")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~stacyharper/sxmobar")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dlw4sbf3awzxvglmfml5fmi9w6zmqxr2f4xqsrwchi154bixix9"))))
+ (build-system hare-build-system)
+ (native-inputs (list scdoc))
+ (supported-systems %hare-supported-systems)
+ (home-page "https://sxmobar.builtwithhare.org")
+ (synopsis "Status bar component manager")
+ (description "sxmobar is a status bar component manager. It is used to
+generate status lines for @command{i3status}, @command{i3bar},
+@command{swaybar}, and others.")
+ (license license:agpl3+)))