unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Aleksandr Vityazev <avityazev@posteo.org>
To: 56752@debbugs.gnu.org
Subject: [bug#56752] [PATCH 27/27] gnu: Add swayrbar.
Date: Sun, 24 Jul 2022 21:48:09 +0000	[thread overview]
Message-ID: <5d7b6f27e7815cccc60450172816b5be3bf2efbb.1658698212.git.avityazev@posteo.org> (raw)
In-Reply-To: <cover.1658698210.git.avityazev@posteo.org>

* gnu/packages/rust-apps.scm (swayrbar): New variable.
---
 gnu/packages/rust-apps.scm | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index e15d505818..990e8368b9 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1665,6 +1665,45 @@ (define-public swayr
 manager.")
     (license license:gpl3+)))
 
+(define-public swayrbar
+  (package
+    (name "swayrbar")
+    (version "0.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "swayrbar" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "10k3qgm9hr1p54vvf1gnydbp7flvwkk382bb2x943bhvc26g2l7x"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-test-flags
+       '("--release" "--"
+         "--skip=config::test_load_swayrbar_config")
+       #:cargo-inputs
+       (("rust-battery" ,rust-battery-0.7)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-clap" ,rust-clap-3)
+        ("rust-directories" ,rust-directories-4)
+        ("rust-env-logger" ,rust-env-logger-0.9)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-once-cell" ,rust-once-cell-1)
+        ("rust-regex" ,rust-regex-1)
+        ("rust-rt-format" ,rust-rt-format-0.3)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-swaybar-types" ,rust-swaybar-types-3)
+        ("rust-swayipc" ,rust-swayipc-3)
+        ("rust-sysinfo" ,rust-sysinfo-0.23)
+        ("rust-toml" ,rust-toml-0.5))))
+    (home-page "https://sr.ht/~tsdh/swayr/#swayrbar")
+    (synopsis "Swaybar-protocol implementation for sway/swaybar")
+    (description
+     "This package provides a swaybar-protocol implementation for sway/swaybar.")
+    (license license:gpl3+)))
+
 (define-public tealdeer
   (package
     (name "tealdeer")
-- 
2.37.1



-- 

Aleksandr Vityazev




      parent reply	other threads:[~2022-07-24 21:49 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1658698210.git.avityazev@posteo.org>
2022-07-24 21:30 ` [bug#56752] [PATCH 01/27] gnu: Add rust-rt-format-0.3 Aleksandr Vityazev
2022-07-24 21:31 ` [bug#56752] [PATCH 02/27] gnu: Add rust-swaybar-types-3 Aleksandr Vityazev
2022-07-24 21:32 ` [bug#56752] [PATCH 03/27] gnu: rust-thiserror-impl-1: Update to 1.0.31 Aleksandr Vityazev
2022-07-24 21:32 ` [bug#56752] [PATCH 04/27] gnu: rust-thiserror-1: " Aleksandr Vityazev
2022-07-24 21:33 ` [bug#56752] [PATCH 05/27] gnu: Add rust-swayipc-types-1 Aleksandr Vityazev
2022-07-24 21:37   ` Maxime Devos
2022-07-24 21:42     ` Maxime Devos
2022-07-24 21:33 ` [bug#56752] [PATCH 06/27] gnu: Add rust-swayipc-3 Aleksandr Vityazev
2022-07-24 21:35   ` Maxime Devos
2022-07-24 22:08     ` [bug#56752] [PATCH 00/27] Add swayr and swayrbar Aleksandr Vityazev
2022-07-24 21:42   ` [bug#56752] [PATCH 06/27] gnu: Add rust-swayipc-3 Maxime Devos
2022-07-24 21:36 ` [bug#56752] [PATCH 15/27] gnu: rust-once-cell-1: Update to 1.13.0 Aleksandr Vityazev
2022-07-24 21:43   ` Maxime Devos
2022-07-24 21:37 ` [bug#56752] [PATCH 16/27] gnu: rust-regex-syntax-0.6: Update to 0.6.27 Aleksandr Vityazev
2022-07-24 21:37 ` [bug#56752] [PATCH 17/27] gnu: rust-regex-1: Update to 1.6.0 Aleksandr Vityazev
2022-07-24 21:37 ` [bug#56752] [PATCH 18/27] gnu: Add rust-peg-runtime-0.8 Aleksandr Vityazev
2022-07-24 21:38 ` [bug#56752] [PATCH 19/27] gnu: Add rust-peg-macros-0.8 Aleksandr Vityazev
2022-07-24 21:38 ` [bug#56752] [PATCH 20/27] gnu: Add rust-peg-0.8 Aleksandr Vityazev
2022-07-24 21:43 ` [bug#56752] [PATCH 21/27] gnu: Add rust-clap-lex-0.2 Aleksandr Vityazev
2022-07-24 21:47 ` [bug#56752] [PATCH 24/27] gnu: rust-clap-derive-3: Update to 3.2.7 Aleksandr Vityazev
2022-07-24 21:47 ` [bug#56752] [PATCH 26/27] gnu: Add swayr Aleksandr Vityazev
2022-07-24 21:48 ` Aleksandr Vityazev [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=5d7b6f27e7815cccc60450172816b5be3bf2efbb.1658698212.git.avityazev@posteo.org \
    --to=avityazev@posteo.org \
    --cc=56752@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 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).