[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
43/45: TODO gnu: Add discover.
From: |
guix-commits |
Subject: |
43/45: TODO gnu: Add discover. |
Date: |
Sun, 31 Jan 2021 10:27:30 -0500 (EST) |
htgoebel pushed a commit to branch wip-kde-plasma
in repository guix.
commit 55b341ba61584df91d28d9c60eb59ad7b2c452e2
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Fri Jun 9 13:07:35 2017 +0200
TODO gnu: Add discover.
* gnu/packages/kde-plasma.scm (discover): New variable.
---
gnu/packages/kde-plasma.scm | 63 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index e0e2c84..e9b752f 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -261,6 +261,69 @@ Application Style > GNOME Application Style. Also make
sure to disable “apply
colors to non-Qt applications“ in System Settings > Colors > Options.")
(license license:lgpl2.1+)))
+(define-public discover
+ (package
+ (name "discover")
+ (version "5.19.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/plasma/" version
+ "/discover-" version ".tar.xz"))
+ (sha256
+ (base32 "10izi9i9q42sjf5fa29dafmscphc9ly6vyi4ciczmfqg8mh9163g"))))
+ (build-system qt-build-system)
+ (arguments
+ `(#:tests? #f ;; FIXME
+ #:validate-runpath? #f ;; FIXME
+ #:configure-flags
+ (let* ((out (assoc-ref %outputs "out"))
+ (lib (assoc-ref %outputs "out"))
+ (libdir (string-append lib "/lib")))
+ (list ;(string-append "-DCMAKE_INSTALL_PREFIX=" out)
+ ;(string-append "-DCMAKE_INSTALL_LIBDIR=" libdir)
+ ;; We need both libdir and libdir/ceph in RUNPATH.
+ (string-append "-DCMAKE_INSTALL_RPATH="
+ libdir ";" libdir "/plasma-discover")
+; (string-append "-DCMAKE_INSTALL_SYSCONFDIR=" out "/etc")
+; (string-append "-DCMAKE_INSTALL_MANDIR=" out "/share/man")
+; (string-append "-DCMAKE_INSTALL_DOCDIR=" out "/share/ceph/doc")
+; (string-append "-DCMAKE_INSTALL_LIBEXECDIR=" out "/libexec")
+; "-DALLOCATOR=jemalloc"
+ ))))
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("attica" ,attica)
+ ("karchive" ,karchive)
+ ("kconfig" ,kconfig)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kdeclarative" ,kdeclarative)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("knewstuff" ,knewstuff)
+ ("knotifications" ,knotifications)
+ ("kxmlgui" ,kxmlgui)
+ ("plasma-framework" ,plasma-framework)
+ ("qtbase" ,qtbase)
+ ("qtdeclarative" ,qtdeclarative)
+ ;; run-time packages
+ ("kirigami", kirigami)
+ ;; optional packages
+ ;;packagekitqt5 http://www.packagekit.org
+ ;;AppStreamQt Library that lists Appstream resources
+))
+ (home-page "https://www.kde.org/plasma-desktop")
+ (synopsis "Application Installer for applications delivered as AppStream
packages") ; correct?
+ (description "KDE and Plasma resources management GUI.
+
+This most probably is not of much use in GuixSD for now.")
+ (license (list license:lgpl2.0+ license:gpl3+ license:fdl1.2+))))
+
(define-public kactivitymanagerd
(package
(name "kactivitymanagerd")
- 30/45: gnu: Add plasma-sdk., (continued)
- 30/45: gnu: Add plasma-sdk., guix-commits, 2021/01/31
- 39/45: gnu: Add powerdevil., guix-commits, 2021/01/31
- 01/45: TEMP HACK refresh to 5.19.5, guix-commits, 2021/01/31
- 21/45: gnu: Add kgamma5., guix-commits, 2021/01/31
- 25/45: gnu: Add milou., guix-commits, 2021/01/31
- 31/45: gnu: Add plasma-tests. REWORD, guix-commits, 2021/01/31
- 35/45: gnu: Add systemsettings., guix-commits, 2021/01/31
- 37/45: gnu: Add khotkeys., guix-commits, 2021/01/31
- 42/45: gnu: Add utempter -- TODO later, guix-commits, 2021/01/31
- 40/45: gnu: Add breeze-grub DUMMY. MUST come after plasma-desktop, guix-commits, 2021/01/31
- 43/45: TODO gnu: Add discover.,
guix-commits <=
- 07/45: gnu: Add plasma-workspace., guix-commits, 2021/01/31
- 15/45: TEMP Add some helpers for running plasma in the VM., guix-commits, 2021/01/31
- 11/45: TEMP Add some Readme-files for packaging Plasma for Guix., guix-commits, 2021/01/31
- 41/45: gnu: Add breeze-plymouth DUMMY., guix-commits, 2021/01/31
- 06/45: gnu: Add kwin. use a patch REWORD, guix-commits, 2021/01/31
- 34/45: gnu: Add sddm-kcm., guix-commits, 2021/01/31
- 45/45: TEMP Add "playgound" for runninc plasma on another virtual terminal., guix-commits, 2021/01/31
- 32/45: gnu: Add plasma-workspace-wallpapers., guix-commits, 2021/01/31