mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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>
This commit is contained in:
parent
2ebb0383a2
commit
4f7f4e82e1
1 changed files with 14 additions and 0 deletions
|
@ -188,6 +188,20 @@ (define-public appstream
|
||||||
(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")
|
||||||
|
|
Loading…
Reference in a new issue