From 2c4d7f13423fb83b829975e927b5c6146944c0a1 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 2 Dec 2020 20:12:09 -0500 Subject: [PATCH] kodi: accept plugins without extraRuntimeDependencies --- pkgs/applications/video/kodi/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/kodi/wrapper.nix b/pkgs/applications/video/kodi/wrapper.nix index 6a0b1cbdf73..d0a7ed5e23c 100644 --- a/pkgs/applications/video/kodi/wrapper.nix +++ b/pkgs/applications/video/kodi/wrapper.nix @@ -19,7 +19,7 @@ in buildEnv { --prefix KODI_HOME : $out/share/kodi \ --prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath (stdenv.lib.concatMap - (plugin: plugin.extraRuntimeDependencies) plugins)}" + (plugin: plugin.extraRuntimeDependencies or []) plugins)}" done '';