summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon Vandel Sillesen <simon.vandel@gmail.com>2016-03-20 17:03:12 +0100
committerSimon Vandel Sillesen <simon.vandel@gmail.com>2016-03-20 17:03:12 +0100
commit76ce988c500067e2dfc2a6eafaa59fc9124d8625 (patch)
treec898184636004a352d60b5732efaf8419df6ea84
parentf59998055b1a18a59172fe5a9ab3d6ef3e6bff71 (diff)
downloadnixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar.gz
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar.bz2
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar.lz
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar.xz
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.tar.zst
nixlib-76ce988c500067e2dfc2a6eafaa59fc9124d8625.zip
kodiPlusings.pvr-hts: fix loading of plugin
The plugin was looking for pvr.hts.so.2.2.13, so as only pvr.hts.so was copied, the plugin would not load. This symlinks all variants of the name to the addons folder.
-rw-r--r--pkgs/applications/video/kodi/plugins.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix
index 5e68958a1706..0ad638dd7054 100644
--- a/pkgs/applications/video/kodi/plugins.nix
+++ b/pkgs/applications/video/kodi/plugins.nix
@@ -245,7 +245,7 @@ in
     # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
     installPhase = ''
       make install
-      ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts
+      ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts
     '';
   };