GNU bug report logs - #75951
[PATCH] gnu: Add yggtray.

Previous Next

Package: guix-patches;

Reported by: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>

Date: Thu, 30 Jan 2025 18:44:01 UTC

Severity: normal

Tags: patch

Done: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: [PATCH] gnu: Add yggtray.
Date: Thu, 30 Jan 2025 21:42:25 +0300
* gnu/packages/networking.scm (yggtray): New variable.

Change-Id: I031f3db0bb9927ff23bb7994d655978c9abcaa55
---
 gnu/packages/networking.scm | 40 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 970a502b59..baa8f5ef67 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -60,7 +60,7 @@
 ;;; Copyright © 2023 Bruno Victal <mirai <at> makinata.eu>
 ;;; Copyright © 2023 Yovan Naumovski <yovan <at> gorski.stream>
 ;;; Copyright © 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
-;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
+;;; Copyright © 2023, 2024, 2025 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
 ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
 ;;; Copyright © 2022 Dominic Martinez <dom <at> dominicm.dev>
 ;;; Copyright © 2024 Alexey Abramov <levenson <at> mmer.org>
@@ -112,6 +112,7 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages check)
+  #:use-module (gnu packages cmake)
   #:use-module (gnu packages code)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cpp)
@@ -4752,6 +4753,43 @@ (define-public yggdrasil
      ;; which apply to the Application, with which you must still comply
      license:lgpl3)))
 
+(define-public yggtray
+  (package
+    (name "yggtray")
+    (version "0.1.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/the-nexi/yggtray")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0cl30da6s3zgvrbccrma9p3j870dsrzjcacdgn4wpvpjiab8b4p4"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f ;No tests.
+      #:modules '((guix build cmake-build-system)
+                  (guix build qt-utils)
+                  (guix build utils))
+      #:imported-modules `(,@%cmake-build-system-modules (guix build qt-utils))
+      #:phases #~(modify-phases %standard-phases
+                   (add-after 'install 'wrap-qt
+                     (lambda* (#:key inputs #:allow-other-keys)
+                       (wrap-qt-program "yggtray"
+                                        #:output #$output
+                                        #:inputs inputs))))))
+    (native-inputs (list cmake-minimal doxygen))
+    (inputs (list bash-minimal qtbase-5 qtwayland-5 yggdrasil))
+    (home-page "https://github.com/the-nexi/yggtray")
+    (synopsis "Yggdrasil tray and control panel")
+    (description
+     "@code{yggtray} is an @url{https://yggdrasil-network.github.io/, Yggdrasil} tray
+and control panel.  It allows the user to configure, run and control the Yggdrasil
+daemon.")
+    (license license:gpl3+)))
+
 (define-public nebula
   (package
     (name "nebula")

base-commit: c788962baeeb6bf021b30c9ad774d472f592fdb5
-- 
2.47.1





This bug report was last modified 113 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.