GNU bug report logs -
#69219
[PATCH] gnu: Add sandbar.
Previous Next
Reported by: Erik Eduardo <eduarskate8 <at> gmail.com>
Date: Sun, 18 Feb 2024 18:24:01 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#69219: [PATCH] gnu: Add sandbar.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 69219 <at> debbugs.gnu.org.
--
69219: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=69219
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hello,
Erik Eduardo <eduarskate8 <at> gmail.com> writes:
> +(define-public sandbar
I normalized the commit message and applied your patch. Thank you.
> + (description "@command{sandbar} is a minimalist DWM-like bar designed for River,
> + a Wayland compositor. It is triggered through commands sent via
> + standard input, providing extensive customization options. This
> + behavior allows users to dynamically adjust status text, visibility,
> + and bar location, making @command{sandbar} an ideal choice for those
> + seeking a lightweight and hackable bar solution in their Wayland
> + environment.")
I fixed indentation and separated sentences with two spaces.
Nitpick: I also used capitalization for Sandbar (the project name)
instead of @command{sandbar} (the command), as reducing markup is always
better for readability.
Regards,
--
Nicolas Goaziou
[Message part 3 (message/rfc822, inline)]
* gnu/packages/wm.scm(sandbar): New package definition.
Change-Id: I81e109dc72a18adf8bfbb29632397fe4160b4489
---
gnu/packages/wm.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 4efd98f11c..550d58e7c0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1383,6 +1383,34 @@ (define-public keybinder
(define-public keybinder-3.0
(deprecated-package "keybinder-3.0" keybinder))
+(define-public sandbar
+ (package
+ (name "sandbar")
+ (version "0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kolunmi/sandbar")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0912cr2q2kg4nqdwy978kpmdcj2cjz3gnlcb28ny9z3cprxvyvxq"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f
+ #:make-flags (list (string-append "CC="
+ ,(cc-for-target))
+ (string-append "PREFIX=" %output))
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (inputs (list fcft wayland))
+ (native-inputs (list pkg-config wayland-protocols))
+ (synopsis "dwm-like bar for the river wayland compositor")
+ (description "A simple statusbar designed for the river window manager.")
+ (license (list license:gpl3 license:expat))
+ (home-page "https://github.com/kolunmi/sandbar")))
+
(define-public spectrwm
(package
(name "spectrwm")
base-commit: 96a2357a8a19bd4a796fdf1a875f7f3e0c91030c
--
2.41.0
This bug report was last modified 1 year and 33 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.