diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-01-13 17:06:19 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2025-01-14 19:10:55 +0800 |
commit | d3b2f304067cfed5d07be21bbf284f41fa1e3f88 (patch) | |
tree | 2c5d53599327d449903f0e7cceb4ef845a51f628 /gnu | |
parent | 3600669030d820600985ae5ea3e9283ba1e3a870 (diff) |
gnu: libfm-qt: Update to 2.1.0.
* gnu/packages/lxqt.scm (libfm-qt): Update to 2.1.0.
[inputs]: Simplify. Add lxqt-menu-data.
[propagated-inputs]: Add glib, qtbase, libxcb and menu-cache.
Change-Id: Ief80fd000e5144ce5e7ae4ac1514d0a300c95a75
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lxqt.scm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index 19bf6e7fd3..5980be3897 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -780,28 +780,25 @@ for LXQt.") (define-public libfm-qt (package (name "libfm-qt") - (version "1.3.0") + (version "2.1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/lxqt/" name "/releases/download/" version "/" name "-" version ".tar.xz")) (sha256 - (base32 "1rjrbjw6ixn5yw4r2187xfs7xd6v0j28p7fnjwjnv29lvvzgfm8x")))) + (base32 "1mr93by010scy06kmpgmsvkabg7zn1f0mm9i7grm17mfv3hkx85z")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no tests (inputs - (list glib - libexif - libfm - libxcb - menu-cache - pcre - qtbase-5 - qtx11extras)) + (list libexif + lxqt-menu-data)) + (propagated-inputs + ;; Required by headers. + (list glib qtbase libxcb menu-cache)) (native-inputs - (list pkg-config lxqt-build-tools qttools-5)) + (list pkg-config lxqt-build-tools)) (home-page "https://lxqt-project.org") (synopsis "Qt binding for libfm") (description "libfm-qt is the Qt port of libfm, a library providing |