mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add plasma-browser-integration.
* gnu/packages/kde-plasma.scm (plasma-browser-integration): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
ee62d19d9e
commit
02f3055114
1 changed files with 38 additions and 0 deletions
|
@ -1353,6 +1353,44 @@ (define-public plasma-active-window-control
|
|||
active window on Plasma Desktop.")
|
||||
(license (list license:gpl2 license:gpl3)))))
|
||||
|
||||
(define-public plasma-browser-integration
|
||||
(package
|
||||
(name "plasma-browser-integration")
|
||||
(version "5.25.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/plasma/" version
|
||||
"/" name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18pbn5ic5l3m8i1y99yprpwd4x4746aq3abqn1f2cq5h2683h2ia"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs (list extra-cmake-modules pkg-config))
|
||||
;; TODO: Figure out how to integrate this package into web browsers
|
||||
;; CHROMIUM_EXTENSIONS_DIR - extension for chromium
|
||||
;; MOZILLA_DIR - extension for firefox
|
||||
(inputs (list kio
|
||||
ki18n
|
||||
kcoreaddons
|
||||
kconfig
|
||||
kcrash
|
||||
kdbusaddons
|
||||
knotifications
|
||||
kitemmodels
|
||||
krunner
|
||||
kactivities
|
||||
purpose
|
||||
kfilemetadata
|
||||
kjobwidgets
|
||||
qtdeclarative-5))
|
||||
(propagated-inputs (list plasma-workspace))
|
||||
(home-page "https://invent.kde.org/plasma/plasma-browser-integration")
|
||||
(synopsis "Integrate browsers into the Plasma Desktop")
|
||||
(description
|
||||
"This package aims to provide better integration of web browsers with
|
||||
the KDE Plasma 5 desktop.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public plasma-disks
|
||||
(package
|
||||
(name "plasma-disks")
|
||||
|
|
Loading…
Reference in a new issue