nixpkgs/pkgs/applications/video/kodi/wrapper.nix
2018-09-06 19:55:55 +00:00

25 lines
589 B
Nix

{ stdenv, lib, makeWrapper, buildEnv, kodi, plugins }:
buildEnv {
name = "kodi-with-plugins-${(builtins.parseDrvName kodi.name).version}";
paths = [ kodi ] ++ plugins;
pathsToLink = [ "/share" ];
buildInputs = [ makeWrapper ];
postBuild = ''
mkdir $out/bin
for exe in kodi{,-standalone}
do
makeWrapper ${kodi}/bin/$exe $out/bin/$exe \
--prefix KODI_HOME : $out/share/kodi
done
'';
meta = kodi.meta // {
description = kodi.meta.description
+ " (with plugins: ${lib.concatMapStringsSep ", " (x: x.name) plugins})";
};
}