all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Erik Eduardo <eduarskate8@gmail.com>
To: 69219@debbugs.gnu.org
Cc: Erik Eduardo <erik@erikeduardo.xyz>
Subject: [bug#69219] [PATCH] gnu: Add sandbar.
Date: Fri, 16 Feb 2024 19:04:16 +0000	[thread overview]
Message-ID: <e394c3d876c0e64c9694020bd1e283bb0b5609c3.1708110256.git.erik@erikeduardo.xyz> (raw)

* 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





             reply	other threads:[~2024-02-18 18:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-16 19:04 Erik Eduardo [this message]
2024-02-19  7:02 ` [bug#69219] [PATCH v1] gnu: Add sandbar Erik Eduardo
2024-03-31 11:33 ` [bug#69219] [PATCH v2] gnu/packages/wm.scm(sandbar): New package definition Erik Eduardo
2024-04-15 10:19   ` bug#69219: " Nicolas Goaziou via Guix-patches via

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=e394c3d876c0e64c9694020bd1e283bb0b5609c3.1708110256.git.erik@erikeduardo.xyz \
    --to=eduarskate8@gmail.com \
    --cc=69219@debbugs.gnu.org \
    --cc=erik@erikeduardo.xyz \
    /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.