1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-10 16:50:43 +02:00

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
This commit is contained in:
Artyom V. Poptsov 2025-05-27 07:16:27 +03:00
parent 149fd94344
commit c2cee267e8
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -4832,7 +4832,7 @@ IPv6 Internet connectivity - it also works over IPv4.")
(define-public yggtray (define-public yggtray
(package (package
(name "yggtray") (name "yggtray")
(version "0.1.13") (version "0.1.14")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -4841,11 +4841,10 @@ IPv6 Internet connectivity - it also works over IPv4.")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1ivhhq25kz1di928icf361yf0k8lsf7wncf1f3fbch2gvivzm23a")))) (base32 "1n4pg5fdbqf579d4xajah5y5dawizp8c8difwfsk7xrvjd3w5rcf"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
(list (list
#:tests? #f ;No tests.
#:modules '((guix build cmake-build-system) #:modules '((guix build cmake-build-system)
(guix build qt-utils) (guix build qt-utils)
(guix build utils)) (guix build utils))
@ -4855,8 +4854,14 @@ IPv6 Internet connectivity - it also works over IPv4.")
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(wrap-qt-program "yggtray" (wrap-qt-program "yggtray"
#:output #$output #:output #$output
#:inputs inputs)))))) #:inputs inputs)))
(native-inputs (list cmake-minimal doxygen graphviz)) (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)) (inputs (list bash-minimal qtbase-5 qttools-5 qtwayland-5 yggdrasil))
(home-page "https://github.com/the-nexi/yggtray") (home-page "https://github.com/the-nexi/yggtray")
(synopsis "Yggdrasil tray and control panel") (synopsis "Yggdrasil tray and control panel")