all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Pavel Shlyak <p.shlyak@pantherx.org>
To: 58125@debbugs.gnu.org
Subject: [bug#58125] [PATCH] gnu: Add nm-tray
Date: Tue, 27 Sep 2022 23:49:57 +0300	[thread overview]
Message-ID: <5AA319F7-F1FD-41A4-8ACA-13C978C26835@pantherx.org> (raw)

[-- Attachment #1: 0001-gnu-Add-nm-tray.patch --]
[-- Type: application/octet-stream, Size: 3041 bytes --]

From eec3ce8bcda1317c05e4e61d67f54ef7a20f0823 Mon Sep 17 00:00:00 2001
From: Pavel Shlyak <p.shlyak@pantherx.org>
Date: Tue, 27 Sep 2022 23:45:08 +0300
Subject: [PATCH] gnu: Add nm-tray * gnu/packages/networking.scm (nm-tray): New
 variable.

---
 gnu/packages/networking.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 3d9ba4fc8d..75c73f578a 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -40,6 +40,7 @@
 ;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
 ;;; Copyright © 2020 Hamzeh Nasajpour <h.nasajpour@pantherx.org>
 ;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020-2022 PantherX OS Team <team@pantherx.org>
 ;;; Copyright © 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
@@ -80,6 +81,7 @@ (define-module (gnu packages networking)
   #:use-module (guix build-system meson)
   #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system qt)
   #:use-module (guix build-system trivial)
   #:use-module (guix utils)
   #:use-module (gnu packages)
@@ -115,6 +117,7 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages gstreamer)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages image)
+  #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages libidn)
   #:use-module (gnu packages libusb)
@@ -973,6 +976,30 @@ (define-public blueman
     (home-page "https://github.com/blueman-project/blueman")
     (license license:gpl3+)))
 
+(define-public nm-tray
+  (package
+   (name "nm-tray")
+   (version "0.5.0")
+   (home-page "https://github.com/palinek/nm-tray")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+	   (url home-page)
+           (commit version)
+	   (recursive? #t)))
+     (sha256
+      (base32 "14i8sl0hrnyidlvqnxza0v4018f7p685ksn8419i2w7f9yqpvpiw"))
+     (file-name (git-file-name name version))))
+   (build-system qt-build-system)
+   (arguments (list #:tests? #f))  ; There are no tests upstream
+   (inputs (list qtbase-5 networkmanager-qt modemmanager-qt))
+   (native-inputs (list qttools-5 pkg-config))
+   (synopsis "NetworkManager front end with information icon residing in system tray")
+   (description "nm-tray is a network connection management tool (NetworkManager front end)
+with information icon residing in system tray (like e.g. nm-applet).")
+   (license license:gpl2+)))
+
 ;; The gnu.org ‘home’ for this GNU project is a directory listing with 1.6.0 as
 ;; the latest version.  The author's git repository, mentioned in the 1.6.0
 ;; README and otherwise legit-looking, contains a proper 1.7.0 release tarball
-- 
2.37.0 (Apple Git-136)


             reply	other threads:[~2022-09-27 20:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-27 20:49 Pavel Shlyak [this message]
2022-09-29 16:29 ` [bug#58125] [PATCH] gnu: Add nm-tray Maxime Devos
2022-10-05 14:46   ` Pavel Shlyak
2022-10-05 17:03     ` Maxime Devos
2022-10-10  8:44     ` bug#58125: " Ludovic Courtès

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=5AA319F7-F1FD-41A4-8ACA-13C978C26835@pantherx.org \
    --to=p.shlyak@pantherx.org \
    --cc=58125@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 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.