diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-09-19 20:03:45 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-10-13 13:53:44 +0200 |
commit | 11f65700114231198ad9d80a71eebe6ab7b18d73 (patch) | |
tree | 23f5fc82067bf00473b12c02d5739a4092bc2452 | |
parent | d49766b29353e4e64f0e3ea8e55e54f60195ee1c (diff) | |
download | guix-11f65700114231198ad9d80a71eebe6ab7b18d73.tar.gz guix-11f65700114231198ad9d80a71eebe6ab7b18d73.zip |
gnu: kdesignerplugin: Add optional inputs.
Still missing: kwebkit (KF5WebKitConfig.cmake).
* gnu/packages/kde-frameworks.scm (kdesignerplugin)[inputs]: Add kcompletion,
kconfigwidgets, kiconthemes, kitemviews, kkio, kplotting, ktextwidgets,
kwidgetsaddons, kxmlgui, sonnet.
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 811ea05e77..cb84750492 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -2145,7 +2145,20 @@ started on demand.") `(("kconfig" ,kconfig) ("kcoreaddons" ,kcoreaddons) ("kdoctools" ,kdoctools) - ("qtbase" ,qtbase))) + ("qtbase" ,qtbase) + ;; optional: + ("kcompletion" ,kcompletion) + ("kconfigwidgets" ,kconfigwidgets) + ("kiconthemes" ,kiconthemes) + ("kitemviews" ,kitemviews) + ("kio" ,kio) + ("kplotting" ,kplotting) + ("ktextwidgets" ,ktextwidgets) + ("kdewebkit" ,kdewebkit) + ("kwidgetsaddons" ,kwidgetsaddons) + ("kxmlgui" ,kxmlgui) + ("qtwebkit" ,qtwebkit) + ("sonnet" ,sonnet))) (arguments `(#:phases (modify-phases %standard-phases |