diff options
author | Marius Bakke <[email protected]> | 2019-03-14 16:30:19 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2019-03-14 16:30:19 +0100 |
commit | 19008a22d18e772062952034c58a15ed341df3b5 (patch) | |
tree | 3a7fb9b4abe5cbac3f7edd5d5c76abd993fad255 /gnu/packages/kodi.scm | |
parent | 520ae432d446010ed6a5233c8abfda88a945926c (diff) | |
parent | c958c31caefb20c32cf89caea7d4668d7021a92b (diff) |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/kodi.scm')
-rw-r--r-- | gnu/packages/kodi.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm index 776f9c970e..3929909d10 100644 --- a/gnu/packages/kodi.scm +++ b/gnu/packages/kodi.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 David Thompson <[email protected]> -;;; Copyright © 2017 Marius Bakke <[email protected]> +;;; Copyright © 2017, 2019 Marius Bakke <[email protected]> ;;; Copyright © 2017 Oleg Pykhalov <[email protected]> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Efraim Flashner <[email protected]> @@ -43,6 +43,7 @@ #:use-module (gnu packages databases) #:use-module (gnu packages documentation) #:use-module (gnu packages fontutils) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages fribidi) #:use-module (gnu packages gettext) #:use-module (gnu packages ghostscript) @@ -462,6 +463,23 @@ plug-in system.") license:bsd-3 ;misc, gtest license:bsd-2)))) ;xbmc/freebsd +(define-public kodi/wayland + (package/inherit kodi + (name "kodi-wayland") + (arguments + (substitute-keyword-arguments (package-arguments kodi) + ((#:configure-flags flags) + `(append '("-DCORE_PLATFORM_NAME=wayland" + "-DWAYLAND_RENDER_SYSTEM=gl") + ,flags)))) + (inputs + `(("libinput" ,libinput) + ("libxkbcommon" ,libxkbcommon) + ("waylandpp" ,waylandpp) + ("waylandp-protocols" ,wayland-protocols) + ,@(package-inputs kodi))) + (synopsis "Kodi with Wayland rendering backend"))) + (define-public kodi-cli (let ((commit "104dc23b2a993c8e6db8c46f4f8bec24b146549b") ; Add support for (revision "1")) ; `$HOME/.kodirc'. |