diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-06-03 11:38:58 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-06-08 18:59:45 +0200 |
commit | 7cf6793b4e63a74fed35fd143b92fa7be92cb05d (patch) | |
tree | 293e763b89e6512da0b1871e18379d54b2ebcf43 | |
parent | 786cb78386f2819375d0b9f6612b4d0c06e0d9e9 (diff) | |
download | guix-7cf6793b4e63a74fed35fd143b92fa7be92cb05d.tar guix-7cf6793b4e63a74fed35fd143b92fa7be92cb05d.tar.gz |
gnu: kinit: Add more optional inputs.
* gnu/packages/kde-frameworks.scm (kinit)
[native-inputs]: Add pkg-config.
[inputs]: Add kdoctools, libcap.
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 601c61ee3d..e4a2e99379 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -2247,7 +2247,8 @@ in applications using the KDE Frameworks.") "08429kjihpaip73wszr3rsii8sdlwgm3kxx7g0hpjhkj9d2jq3m1")))) (build-system cmake-build-system) (native-inputs - `(("extra-cmake-modules" ,extra-cmake-modules))) + `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config))) (inputs `(("kauth" ,kauth) ("kbookmarks" ,kbookmarks) @@ -2257,6 +2258,7 @@ in applications using the KDE Frameworks.") ("kconfigwidgets" ,kconfigwidgets) ("kcoreaddons" ,kcoreaddons) ("kcrash" ,kcrash) + ("kdoctools" ,kdoctools) ("kio" ,kio) ("kitemviews" ,kitemviews) ("ki18n" ,ki18n) @@ -2265,6 +2267,7 @@ in applications using the KDE Frameworks.") ("kwidgetsaddons" ,kwidgetsaddons) ("kwindowsystem" ,kwindowsystem) ("kxmlgui" ,kxmlgui) + ("libcap" ,libcap) ; to install start_kdeinit with CAP_SYS_RESOURCE ("qtbase" ,qtbase) ("solid" ,solid))) (home-page "https://community.kde.org/Frameworks") |