Navigation Menu

Skip to content

Commit

Permalink
gnu: Add plasma-bigscreen.
Browse files Browse the repository at this point in the history
* gnu/packages/kde-plasma.scm (plasma-bigscreen): New variable.
  • Loading branch information
phodina committed Oct 6, 2022
1 parent d54a4a6 commit 5eaa9c4
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions gnu/packages/kde-frameworks.scm
Expand Up @@ -915,6 +915,7 @@ or user activity.")
;;("plasma-frameworks" ,plasma-framework) ;; Tier 3!
qtbase-5
qtdeclarative-5
qtquickcontrols-5
qtquickcontrols2-5
qtsvg-5
;; Run-time dependency
Expand Down
49 changes: 49 additions & 0 deletions gnu/packages/kde-plasma.scm
Expand Up @@ -1516,6 +1516,55 @@ on top of Baloo.")
(description "Meta package containing packages for Plasma Desktop")
(license license:gpl2+)))

(define-public plasma-bigscreen
(package
(name "plasma-bigscreen")
(version "5.25.90")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/unstable/plasma/"
version
"/"
name
"-"
version
".tar.xz"))
(sha256
(base32
"1445j8hzfvh2z91fa8nxrc0z576c67cq5fxcs19pmzpnjjli1ads"))))
(build-system cmake-build-system)
(arguments
(list #:phases #~(modify-phases %standard-phases
(add-after 'unpack 'fix-startplasma
(lambda* _
(substitute* "bin/plasma-bigscreen-wayland.in"
(("^startplasma-wayland")
(string-append #$plasma-framework
"/bin/startplasma-wayland")))
(substitute* "bin/plasma-bigscreen-x11"
(("startplasma-x11")
(string-append #$plasma-framework
"/bin/startplasma-x11"))))))))
(native-inputs (list extra-cmake-modules))
(inputs (list kactivities
kactivities-stats
plasma-framework
ki18n
kirigami
kdeclarative
kcmutils
knotifications
kio
kwayland
kwindowsystem
plasma-workspace
qtbase-5
qtmultimedia-5))
(home-page "https://invent.kde.org/plasma/plasma-bigscreen")
(synopsis "Plasma shell for TVs")
(description "")
(license license:gpl2+)))

(define-public plasmatube
(package
(name "plasmatube")
Expand Down

0 comments on commit 5eaa9c4

Please sign in to comment.