mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 11:54:33 -05:00
gnu: Add xdg-desktop-portal-kde.
* gnu/packages/freedesktop.scm (xdg-desktop-portal-kde): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
5a6833113b
commit
4cb6ef78dc
1 changed files with 38 additions and 0 deletions
|
@ -61,6 +61,7 @@ (define-module (gnu packages freedesktop)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system glib-or-gtk)
|
#:use-module (guix build-system glib-or-gtk)
|
||||||
|
#:use-module (guix build-system qt)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages acl)
|
#:use-module (gnu packages acl)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
|
@ -73,6 +74,7 @@ (define-module (gnu packages freedesktop)
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cryptsetup)
|
#:use-module (gnu packages cryptsetup)
|
||||||
|
#:use-module (gnu packages cups)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
#:use-module (gnu packages disk)
|
#:use-module (gnu packages disk)
|
||||||
|
@ -2665,6 +2667,42 @@ (define-public xdg-desktop-portal-gtk
|
||||||
interfaces.")
|
interfaces.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public xdg-desktop-portal-kde
|
||||||
|
(package
|
||||||
|
(name "xdg-desktop-portal-kde")
|
||||||
|
(version "5.25.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://kde/stable/plasma/" version "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0l3lmwihxyl65y0mkyg3afk1k6gc0ldjw2vg92g7yydbgmn39q7k"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs (list extra-cmake-modules pkg-config))
|
||||||
|
(inputs (list cups
|
||||||
|
kcoreaddons
|
||||||
|
kconfig
|
||||||
|
ki18n
|
||||||
|
kdeclarative
|
||||||
|
kio
|
||||||
|
kirigami
|
||||||
|
knotifications
|
||||||
|
plasma-framework
|
||||||
|
plasma-wayland-protocols
|
||||||
|
kwayland
|
||||||
|
kwidgetsaddons
|
||||||
|
kwindowsystem
|
||||||
|
kiconthemes
|
||||||
|
qtdeclarative-5
|
||||||
|
qtwayland-5
|
||||||
|
wayland))
|
||||||
|
(synopsis "Backend implementation for xdg-desktop-portal using Qt/KF5")
|
||||||
|
(description "This package provides a backend implementation
|
||||||
|
for xdg-desktop-portal that is using Qt/KF5.")
|
||||||
|
(home-page "https://invent.kde.org/plasma/xdg-desktop-portal-kde")
|
||||||
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
(define-public xdg-desktop-portal-wlr
|
(define-public xdg-desktop-portal-wlr
|
||||||
(package
|
(package
|
||||||
(name "xdg-desktop-portal-wlr")
|
(name "xdg-desktop-portal-wlr")
|
||||||
|
|
Loading…
Reference in a new issue