summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorCarles Pagès <page@ruiec.cat>2019-02-23 03:08:43 +0100
committerCarles Pagès <page@ruiec.cat>2019-02-23 03:09:51 +0100
commit8b5c59219b03b6d60e7c6ba21b64aec98a642822 (patch)
tree725f8ea03b8b958a3e5cd8e9e6a3e750b8d1bdc2 /pkgs/applications
parentb7fd4554be898a5a964905299ccb58d697fb9504 (diff)
kodiPlugins: fix wrapper evaluation
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/kodi/plugins.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix
index 54075e9e0920..4ffd49204bfc 100644
--- a/pkgs/applications/video/kodi/plugins.nix
+++ b/pkgs/applications/video/kodi/plugins.nix
@@ -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"