diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2022-08-17 10:20:46 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2022-08-22 08:42:53 +0800 |
commit | 2472cec23b4432d719c5ada29da2a9984bc6c095 (patch) | |
tree | 7b982e30b3f6c3dd9a4c68525bb8d8bf6393ac71 /gnu/packages/lxqt.scm | |
parent | e14150705467a3af9a35def31d11e7a8b2ad06a8 (diff) |
gnu: Add qtxdg-tools.
* gnu/packages/lxqt.scm (qtxdg-tools): New variable.
Diffstat (limited to 'gnu/packages/lxqt.scm')
-rw-r--r-- | gnu/packages/lxqt.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index d2f9cc89ac..387caa06c0 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -210,6 +210,29 @@ itself as well as other components maintained by the LXQt project.") in Qt.") (license license:lgpl2.1+))) +(define-public qtxdg-tools + (package + (name "qtxdg-tools") + (version "3.9.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/lxqt/qtxdg-tools/releases/download/" + version "/qtxdg-tools-" version ".tar.xz")) + (sha256 + (base32 "0qn35v4dv71g0a4cqkbikppwmihxmfa560q9kw5pwk2y0xiwpncr")))) + (build-system cmake-build-system) + (arguments '(#:tests? #f)) ; no tests + (propagated-inputs (list libqtxdg)) + (native-inputs (list lxqt-build-tools)) + (home-page "https://github.com/lxqt/qtxdg-tools") + (synopsis "User tools for libqtxdg") + (description "This package contains a CLI MIME tool, @command{qtxdg-mat}, +for handling file associations and opening files with their default +applications.") + (license license:lgpl2.1+))) + (define-public liblxqt (package (name "liblxqt") |