diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 22:15:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 22:15:07 +0100 |
commit | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (patch) | |
tree | 06bc27447f2f72b20a2be0201b41b964af03fc87 /gnu/packages/kde-pim.scm | |
parent | fc9ca46aa6403c90e2ea5c815d813d2dba162dfb (diff) | |
download | guix-e3196755e60ba7f1ed9d432e73f26a85e0c8893c.tar.gz |
gnu: Further simplify package inputs.
This is the result of running: ./pre-inst-env guix style --input-simplification=safe and manually undoing changes on a dozen of packages to reduce rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.)
Diffstat (limited to 'gnu/packages/kde-pim.scm')
-rw-r--r-- | gnu/packages/kde-pim.scm | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index a2edb13ea6..dd18a95062 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -358,33 +358,33 @@ Akonadi PIM data server. It uses Xapian for indexing and querying.") (native-inputs (list extra-cmake-modules)) (inputs - `(("akonadi" ,akonadi) - ("akonadi-calendar" ,akonadi-calendar) - ("akonadi-contacts" ,akonadi-contacts) - ("akonadi-mime" ,akonadi-mime) - ("boost" ,boost) - ("kcalendarcore" ,kcalendarcore) - ("kcalendarsupport" ,kcalendarsupport) - ("kcalutils" ,kcalutils) - ("kcodecs" ,kcodecs) - ("kcontacts" ,kcontacts) - ("kdbusaddons" ,kdbusaddons) - ("kdepim-apps-libs" ,kdepim-apps-libs) - ("kdiagram" ,kdiagram) - ("keventviews" ,keventviews) - ("ki18n" ,ki18n) - ("kiconthemes" ,kiconthemes) - ("kidentitymanagement" ,kidentitymanagement) - ("kio" ,kio) - ("kitemmodels" ,kitemmodels) - ("kldap" ,kldap) - ("kmailtransport" ,kmailtransport) - ("kmime" ,kmime) - ("kpimtextedit" ,kpimtextedit) - ("ktextwidgets" ,ktextwidgets) - ("kwallat" ,kwallet) - ("libkdepim" ,libkdepim) - ("qtbase" ,qtbase-5))) + (list akonadi + akonadi-calendar + akonadi-contacts + akonadi-mime + boost + kcalendarcore + kcalendarsupport + kcalutils + kcodecs + kcontacts + kdbusaddons + kdepim-apps-libs + kdiagram + keventviews + ki18n + kiconthemes + kidentitymanagement + kio + kitemmodels + kldap + kmailtransport + kmime + kpimtextedit + ktextwidgets + kwallet + libkdepim + qtbase-5)) (home-page "https://invent.kde.org/pim/incidenceeditor") (synopsis "KDE PIM library for editing incidences") (description "This library provides an incidence editor for KDE PIM.") |