From: Luca Matei Pintilie via Guix-patches via <guix-patches@gnu.org>
To: 73884@debbugs.gnu.org
Cc: Luca Matei Pintilie <luca@lucamatei.com>, efraim@flashner.co.il
Subject: [bug#73884] [PATCH v2] gnu: Add swaysome
Date: Fri, 25 Oct 2024 21:23:25 +0200 [thread overview]
Message-ID: <20241025192338.10315-1-luca@lucamatei.com> (raw)
In-Reply-To: <20241019124653.11210-1-luca@lucamatei.com>
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
Change-Id: I7e9b43b875cfdf68131b0fcff99721655c5af2d0
---
gnu/packages/rust-apps.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 3844daa651..245e0216eb 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -3269,6 +3269,31 @@ (define-public swayr
daemon which executes them.")
(license license:gpl3+)))
+(define-public swaysome
+ (package
+ (name "swaysome")
+ (version "2.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "swaysome" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "12rqvjj9d12nm9zppgp4hvfw5l308gn9ljbbgbhi0cglpg11rnjk"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
+ ("rust-clap" ,rust-clap-4)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://gitlab.com/hyask/swaysome")
+ (synopsis
+ "Awesome way to manage your multiple outputs with the sway windows manager")
+ (description
+ "This package provides swaysome provides an awesome way to manage your multiple
+outputs with the sway windows manager.")
+ (license license:expat)))
+
(define-public tealdeer
(package
(name "tealdeer")
--
2.47.0
prev parent reply other threads:[~2024-10-26 5:28 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-19 12:46 [bug#73884] [PATCH 00/19] gnu: Add swayrbar Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 01/19] gnu: Add rust-windows-metadata-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 02/19] gnu: Add rust-windows-bindgen-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 03/19] gnu: Add rust-windows-result-0.1 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 04/19] gnu: Add rust-windows-interface-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 05/19] gnu: Add rust-windows-implement-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 06/19] gnu: Add rust-windows-core-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 07/19] gnu: Add rust-windows-0.57 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 08/19] gnu: Add rust-sysinfo-0.31 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 09/19] gnu: Add rust-swaybar-types-3 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 10/19] gnu: rust-regex-syntax-0.8: Update to 0.8.5 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 11/19] gnu: rust-regex-automata-0.4: Update to 0.4.8 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 12/19] gnu: rust-regex-1: Update to 1.11.0 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 13/19] gnu: Add rust-crossbeam-utils-0.8.16 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 14/19] gnu: rust-portable-atomic-1: Update to 1.9.0 Luca Matei Pintilie via Guix-patches via
2024-10-19 14:49 ` [bug#73884] [PATCH v1 15/19] gnu: rust-critical-section-1: Update to 1.1.3 Luca Matei Pintilie via Guix-patches via
2024-10-21 5:20 ` [bug#73884] [PATCH v1 01/19] gnu: Add rust-windows-metadata-0.57 Efraim Flashner
2024-10-25 21:52 ` Luca Matei Pintilie via Guix-patches via
2024-11-14 6:40 ` bug#73884: " Efraim Flashner
2024-10-20 16:15 ` [bug#73884] [PATCH v1 16/19] gnu: rust-once-cell-1: Update to 1.20.2 Luca Matei Pintilie via Guix-patches via
2024-10-20 16:15 ` [bug#73884] [PATCH v1 17/19] gnu: Add rust-uom-0.30 Luca Matei Pintilie via Guix-patches via
2024-10-20 16:15 ` [bug#73884] [PATCH v1 18/19] gnu: Add rust-battery-0.7 Luca Matei Pintilie via Guix-patches via
2024-10-20 16:15 ` [bug#73884] [PATCH v1 19/19] gnu: Add swayrbar Luca Matei Pintilie via Guix-patches via
2024-10-25 19:23 ` Luca Matei Pintilie via Guix-patches via [this message]
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241025192338.10315-1-luca@lucamatei.com \
--to=guix-patches@gnu.org \
--cc=73884@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=luca@lucamatei.com \
/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 public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).