diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-08-20 21:50:53 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-01-31 16:25:52 +0100 |
commit | 10fd4bacbd0c8966b07aae1060eebf174f4ceaea (patch) | |
tree | 63d7eb0913017ed1e92c6a37e9dabc410c3fb76d | |
parent | 15dc1b11580b52a7e9d10645d74d9ee4ddecafff (diff) | |
download | guix-10fd4bacbd0c8966b07aae1060eebf174f4ceaea.tar.gz |
gnu: Add milou.
* gnu/packages/kde-plasma.scm (milou): New variable.
-rw-r--r-- | gnu/packages/kde-plasma.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 2a7af14515..c0f21a6ca1 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -965,6 +965,42 @@ manage running processes. It obtains this information by interacting with a ksysguardd daemon, which may also run on a remote system.") (license license:gpl3+))) +(define-public milou + (package + (name "milou") + (version "5.19.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" version + "/milou-" version ".tar.xz")) + (sha256 + (base32 "03h4m7wfl7ffsklngx5fwxd4mj082df9j0m8mlz6z3x98v3fbipd")))) + (build-system qt-build-system) + ;; TOOO: warnings during generation of metainfo for org.kde.milou: Package + ;; type "Plasma/Applet" not found + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kcoreaddons" ,kcoreaddons) + ("kdeclarative" ,kdeclarative) + ("kwindowsystem" ,kwindowsystem) + ("ki18n" ,ki18n) + ("kitemmodels" ,kitemmodels) + ("krunner" ,krunner) + ("kservice" ,kservice) + ("plasma-framework" ,plasma-framework) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative) + ("qtscript" ,qtscript) + ("qtbase" ,qtbase))) + (home-page "https://invent.kde.org/plasma/milou") + (synopsis "Dedicated search plasmoid built on top of Baloo") + (description "Milou can also be used as an alternative to KRunner, and +does provide application launching. The main difference is that it +concentrates more on searching.") + (license license:gpl3))) ;; KDE e.V. + (define-public plasma-desktop (package (name "plasma-desktop") |