mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: Add plasma-active-window-control.
* gnu/packages/kde-plasma.scm (plasma-active-window-control): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
4646bc2f59
commit
c3358f9bc5
1 changed files with 30 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
||||||
(define-module (gnu packages kde-plasma)
|
(define-module (gnu packages kde-plasma)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix git-download)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
|
@ -724,6 +725,35 @@ (define-public plasmatube
|
||||||
on QtMultimedia and @command{yt-dlp}.")
|
on QtMultimedia and @command{yt-dlp}.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public plasma-active-window-control
|
||||||
|
(let ((commit "0b1c091b5662fb21917064d7809b3be8b4a8be47")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "plasma-active-window-control")
|
||||||
|
(version (git-version "1.7.3" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://invent.kde.org/plasma/plasma-active-window-control")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1lns1n7p6b64z7l3bn27hni100pp3k2whzzzg0adr4hiynycdix6"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs (list extra-cmake-modules))
|
||||||
|
(inputs
|
||||||
|
(list kwindowsystem
|
||||||
|
libsm
|
||||||
|
plasma-framework
|
||||||
|
qtdeclarative-5
|
||||||
|
qtx11extras))
|
||||||
|
(home-page "https://invent.kde.org/plasma/plasma-active-window-control")
|
||||||
|
(synopsis "Plasma applet for controlling the currently active window")
|
||||||
|
(description "This package provides window control applet for the current
|
||||||
|
active window on Plasma Desktop.")
|
||||||
|
(license (list license:gpl2 license:gpl3)))))
|
||||||
|
|
||||||
(define-public plasma-disks
|
(define-public plasma-disks
|
||||||
(package
|
(package
|
||||||
(name "plasma-disks")
|
(name "plasma-disks")
|
||||||
|
|
Loading…
Reference in a new issue