me
/
guix
Archived
1
0
Fork 0

gnu: Add appstream-qt.

* gnu/packages/freedesktop.scm (appstream-qt): Add a build of appstream
with Qt support.

Co-authored-by: Marius Bakke <marius@gnu.org>
master
Brendan Tildesley 2022-02-08 17:36:22 +11:00 committed by Marius Bakke
parent 2ebb0383a2
commit 4f7f4e82e1
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 14 additions and 0 deletions

View File

@ -188,6 +188,20 @@ application-centers for distributions.")
(home-page "https://www.freedesktop.org/wiki/Distributions/AppStream/") (home-page "https://www.freedesktop.org/wiki/Distributions/AppStream/")
(license license:lgpl2.1+))) (license license:lgpl2.1+)))
(define-public appstream-qt
(package/inherit appstream
(name "appstream-qt")
(native-inputs
(modify-inputs (package-native-inputs appstream)
(prepend qttools-5)))
(inputs
(modify-inputs (package-inputs appstream)
(prepend qtbase-5)))
(arguments
(substitute-keyword-arguments (package-arguments appstream)
((#:configure-flags flags #~'())
#~(append '("-Dqt=true") #$flags))))))
(define-public farstream (define-public farstream
(package (package
(name "farstream") (name "farstream")