summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/kodi
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-11-10 01:12:23 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-31 01:10:02 +0100
commit839c0ea7a551b48db68a4f666b9b493bcc2a044b (patch)
tree81ea0aeac3dfb3f1ebcfd0b1444a9e11cb0e1f90 /pkgs/applications/video/kodi
parent760e23136acfc192fd9a51b6b3c63fbc0a0c999d (diff)
treewide: *Inputs are flat lists
Diffstat (limited to 'pkgs/applications/video/kodi')
-rw-r--r--pkgs/applications/video/kodi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix
index d47797a30463..4fae93aa1a18 100644
--- a/pkgs/applications/video/kodi/default.nix
+++ b/pkgs/applications/video/kodi/default.nix
@@ -179,7 +179,7 @@ in stdenv.mkDerivation {
++ lib.optional udevSupport udev
++ lib.optional usbSupport libusb
++ lib.optional vdpauSupport libvdpau
- ++ lib.optional useWayland [
+ ++ lib.optionals useWayland [
wayland waylandpp
# Not sure why ".dev" is needed here, but CMake doesn't find libxkbcommon otherwise
libxkbcommon.dev
@@ -192,7 +192,7 @@ in stdenv.mkDerivation {
which
pkgconfig gnumake
autoconf automake libtool # still needed for some components. Check if that is the case with 19.0
- ] ++ lib.optional useWayland [ wayland-protocols ];
+ ] ++ lib.optionals useWayland [ wayland-protocols ];
cmakeFlags = [
"-Dlibdvdcss_URL=${libdvdcss.src}"