about summary refs log tree commit diff
path: root/pkgs/applications/video/kodi
diff options
context:
space:
mode:
authorJonathan Rudenberg <jonathan@titanous.com>2017-06-16 10:49:31 -0400
committerEdward Tjörnhammar <ed@cflags.cc>2017-09-19 08:10:12 +0200
commit84bfe7ed78069ec667be483a2dfcd44ad215e854 (patch)
treed78f4aa8372b111879dc37b1fc243fb26f4653ff /pkgs/applications/video/kodi
parent779aea8868bfee566243cf16f890c7e907fc9ac0 (diff)
downloadnixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar.gz
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar.bz2
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar.lz
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar.xz
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.tar.zst
nixlib-84bfe7ed78069ec667be483a2dfcd44ad215e854.zip
kodiPlugins: fix path for shared object links
Signed-off-by: Jonathan Rudenberg <jonathan@titanous.com>
Diffstat (limited to 'pkgs/applications/video/kodi')
-rw-r--r--pkgs/applications/video/kodi/commons.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/kodi/commons.nix b/pkgs/applications/video/kodi/commons.nix
index 7e3446d51dbf..734229eac938 100644
--- a/pkgs/applications/video/kodi/commons.nix
+++ b/pkgs/applications/video/kodi/commons.nix
@@ -77,7 +77,7 @@ rec {
     # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
     installPhase = let n = namespace; in ''
       make install
-      ln -s $out/lib/addons/${n}/${n}.so.${version} $out/${pluginDir}/${n}.so
+      ln -s $out/lib/addons/${n}/${n}.so.${version} $out/${pluginDir}/${n}/${n}.so.${version}
     '';
 
   };