all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#58125] [PATCH] gnu: Add nm-tray
@ 2022-09-27 20:49 Pavel Shlyak
  2022-09-29 16:29 ` Maxime Devos
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Shlyak @ 2022-09-27 20:49 UTC (permalink / raw)
  To: 58125

[-- 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)


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-10-10  8:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27 20:49 [bug#58125] [PATCH] gnu: Add nm-tray Pavel Shlyak
2022-09-29 16:29 ` 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

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.