diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-06-03 11:20:07 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-06-08 18:59:44 +0200 |
commit | 786cb78386f2819375d0b9f6612b4d0c06e0d9e9 (patch) | |
tree | 34bd0821c1b75e4b23ef7e3fc918d53816902298 | |
parent | 92605669e117cd3f00c5b895bc2833a3d105b4f3 (diff) | |
download | guix-786cb78386f2819375d0b9f6612b4d0c06e0d9e9.tar guix-786cb78386f2819375d0b9f6612b4d0c06e0d9e9.tar.gz |
gnu: kio: Add more optional and recommended inputs.
* gnu/packages/kde-frameworks.scm (kio)[inputs]: Add mit-krb5, qtscript.
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 8aa4419c27..601c61ee3d 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -46,6 +46,7 @@ #:use-module (gnu packages graphics) #:use-module (gnu packages gstreamer) #:use-module (gnu packages image) + #:use-module (gnu packages kerberos) #:use-module (gnu packages linux) #:use-module (gnu packages mp3) #:use-module (gnu packages pdf) @@ -2304,6 +2305,7 @@ makes starting KDE applications faster and reduces memory consumption.") ("extra-cmake-modules" ,extra-cmake-modules))) (inputs `(("acl" ,acl) + ("krb5" ,mit-krb5) ("karchive" ,karchive) ("kauth" ,kauth) ("kcodecs" ,kcodecs) @@ -2320,6 +2322,7 @@ makes starting KDE applications faster and reduces memory consumption.") ("libxml2" ,libxml2) ("libxslt" ,libxslt) ("qtbase" ,qtbase) + ("qtscript" ,qtscript) ("qtx11extras" ,qtx11extras) ("sonnet" ,sonnet))) (arguments |