summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/kodi
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2020-03-22 21:29:45 +0100
committerGitHub <noreply@github.com>2020-03-22 21:29:45 +0100
commit667df74501281062a3af9e7a4e76762a4370b5fc (patch)
tree49b6f22dba573b5949e4f8b07ecccd977bded967 /pkgs/applications/video/kodi
parentca7f78ad03b44a139f508916be640a77f0cfd3d6 (diff)
parent8f12a72488a508a6f477581ad9dfc49250e3e040 (diff)
Merge pull request #83131 from ck3d/fix-kodi-lirc
kodi: fix lirc support
Diffstat (limited to 'pkgs/applications/video/kodi')
-rw-r--r--pkgs/applications/video/kodi/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix
index 77a68317b2f7..875ef8d52ddb 100644
--- a/pkgs/applications/video/kodi/default.nix
+++ b/pkgs/applications/video/kodi/default.nix
@@ -19,6 +19,7 @@
, libcrossguid, libmicrohttpd
, bluez, doxygen, giflib, glib, harfbuzz, lcms2, libidn, libpthreadstubs, libtasn1, libXdmcp
, libplist, p11-kit, zlib, flatbuffers, fmt, fstrcmp, rapidjson
+, lirc
, dbusSupport ? true, dbus ? null
, joystickSupport ? true, cwiid ? null
, nfsSupport ? true, libnfs ? null
@@ -168,6 +169,7 @@ in stdenv.mkDerivation {
libcrossguid cwiid libplist
bluez giflib glib harfbuzz lcms2 libpthreadstubs libXdmcp
ffmpeg flatbuffers fmt fstrcmp rapidjson
+ lirc
# libdvdcss libdvdnav libdvdread
]
++ lib.optional dbusSupport dbus
@@ -202,7 +204,6 @@ in stdenv.mkDerivation {
"-DENABLE_EVENTCLIENTS=ON"
"-DENABLE_INTERNAL_CROSSGUID=OFF"
"-DENABLE_OPTICAL=ON"
- "-DLIRC_DEVICE=/run/lirc/lircd"
] ++ lib.optional useWayland [
"-DCORE_PLATFORM_NAME=wayland"
"-DWAYLAND_RENDER_SYSTEM=gl"