summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-05-27 07:16:27 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-05-27 22:37:32 +0300
commitc2cee267e8aa939a9d19d30eb6e9c28757cab8ab (patch)
tree41a305e4f638a9a8f568ffd358a5ebce16e7618b
parent149fd9434427c9bef594f4c4c776c78719b7659c (diff)
gnu: yggtray: Update to 0.1.14.
* gnu/packages/networking.scm (yggtray): Update to 0.1.14. [native-inputs]: Add check and pkg-config. Remove doxygen and graphviz as they are required only for the building of the development documentation which is currently not getting installed with the package anyway. [arguments]<#tests?>: Remove. [arguments]<#:phases>: Replace "check" phase. Change-Id: Ia5b7e07f77101c37fac8f1983dc397d9a19ff7ec
-rw-r--r--gnu/packages/networking.scm15
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 5d52b86ad6..721b1fddf1 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4832,7 +4832,7 @@ IPv6 Internet connectivity - it also works over IPv4.")
(define-public yggtray
(package
(name "yggtray")
- (version "0.1.13")
+ (version "0.1.14")
(source
(origin
(method git-fetch)
@@ -4841,11 +4841,10 @@ IPv6 Internet connectivity - it also works over IPv4.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1ivhhq25kz1di928icf361yf0k8lsf7wncf1f3fbch2gvivzm23a"))))
+ (base32 "1n4pg5fdbqf579d4xajah5y5dawizp8c8difwfsk7xrvjd3w5rcf"))))
(build-system cmake-build-system)
(arguments
(list
- #:tests? #f ;No tests.
#:modules '((guix build cmake-build-system)
(guix build qt-utils)
(guix build utils))
@@ -4855,8 +4854,14 @@ IPv6 Internet connectivity - it also works over IPv4.")
(lambda* (#:key inputs #:allow-other-keys)
(wrap-qt-program "yggtray"
#:output #$output
- #:inputs inputs))))))
- (native-inputs (list cmake-minimal doxygen graphviz))
+ #:inputs inputs)))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "./unit_tests")))))))
+ (native-inputs (list cmake-minimal
+ check
+ pkg-config))
(inputs (list bash-minimal qtbase-5 qttools-5 qtwayland-5 yggdrasil))
(home-page "https://github.com/the-nexi/yggtray")
(synopsis "Yggdrasil tray and control panel")