diff options
author | guix-patches--- via <guix-patches@gnu.org> | 2024-08-07 21:42:00 +0900 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-08-11 10:51:58 +0100 |
commit | 671da915099a552c23b728fc45580530060607ce (patch) | |
tree | a3ef6da739b54a0646973f61e8397575283559ff /gnu | |
parent | bc8dc51d4273d07289bae39ff8ad59f4107243b6 (diff) | |
download | guix-671da915099a552c23b728fc45580530060607ce.tar.gz guix-671da915099a552c23b728fc45580530060607ce.zip |
gnu: nheko: Add xdg-utils to dependencies.
Nheko uses QDesktopServices::openUrl, which prefers xdg-open
before follow less standard heuristics to find the default browser.
* gnu/packages/messaging.scm (nheko)[inputs]: Add xdg-utils.
Change-Id: Id9e2e0e0f2372c457f08b065de2d2528620f6ec5
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/messaging.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index da04c34636..8509b0c71a 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -44,6 +44,7 @@ ;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu> ;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se> ;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org> +;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2538,6 +2539,7 @@ for the Matrix protocol. It is built on to of @code{Boost.Asio}.") spdlog vulkan-headers vulkan-loader + xdg-utils ; xdg-open for opening URLs zlib)) (native-inputs (list asciidoc pkg-config qttools)) |