kodiPlugins: fix wrapper evaluation

This commit is contained in:
Carles Pagès 2019-02-23 03:08:43 +01:00
parent b7fd4554be
commit 8b5c59219b

View file

@ -55,6 +55,8 @@ let self = rec {
dontStrip = true;
extraRuntimeDependencies = [ ];
installPhase = ''
${if isNull sourceDir then "" else "cd $src/$sourceDir"}
d=$out${pluginDir}/${namespace}
@ -75,6 +77,8 @@ let self = rec {
buildInputs = [ cmake kodiPlain kodi-platform libcec_platform ]
++ extraBuildInputs;
inherit extraRuntimeDependencies;
# disables check ensuring install prefix is that of kodi
cmakeFlags = [
"-DOVERRIDE_PATHS=1"