guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19/45: gnu: Add kde-cli-tools.


From: guix-commits
Subject: 19/45: gnu: Add kde-cli-tools.
Date: Sun, 31 Jan 2021 10:27:23 -0500 (EST)

htgoebel pushed a commit to branch wip-kde-plasma
in repository guix.

commit d8f77cde871a8226b7c0ee351d9d1349d65704db
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Thu Nov 28 23:28:18 2019 +0100

    gnu: Add kde-cli-tools.
    
    Nether setting XDG_DATA_DIRS nor running after install did make
    the tests pass.
    
    * gnu/packages/kde-plasma.scm (kde-cli-tools): New variable.
---
 gnu/packages/kde-plasma.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 51f305e..3def62a 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -238,6 +238,47 @@ for interacting with that daemon, and plugins for 
integration with other
 frameworks.")
     (license license:gpl3+)))
 
+(define-public kde-cli-tools
+  (package
+    (name "kde-cli-tools")
+    (version "5.19.5")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/plasma/" version
+                          "/kde-cli-tools-" version ".tar.xz"))
+      (sha256
+       (base32 "1iw9afdyydng6wcxqy9jf6x9dayskzasmq10252j9d70mqr4hc87"))))
+    (build-system qt-build-system)
+    (arguments
+     `(#:tests? #f)) ; TODO: 1/1 fails – propably due to search-path errors
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("pkg-config" ,pkg-config)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kactivities" ,kactivities)
+       ("kcmutils" ,kcmutils)
+       ("kconfig" ,kconfig)
+       ("kdeclarative" ,kdeclarative)
+       ("kdesu" ,kdesu)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kinit" ,kinit)
+       ("kio" ,kio)
+       ("kwindowsystem" ,kwindowsystem)
+       ("plasma-workspace" ,plasma-workspace) ;; FIXME
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)
+       ("qtx11extras" ,qtx11extras)))
+    (home-page "https://invent.kde.org/plasma/kde-cli-tools";)
+    (synopsis "Tools to use KDE services from the command line")
+    (description "These command line tools enable you to use KDE services such
+as kioslaves, kdesu, QtSVG, kcontrol modules, KDE trader and start
+applications from the command line.")
+    (license (list license:gpl3+ license:gpl2)))) ;; KDE e.V.
+
 (define-public kdecoration
   (package
     (name "kdecoration")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]