add kodi-test
This commit is contained in:
parent
264128c458
commit
ab14cb7def
|
@ -65,16 +65,28 @@ final: prev: rec {
|
||||||
in {
|
in {
|
||||||
inputstream-adaptive =
|
inputstream-adaptive =
|
||||||
kodiPackages.inputstream-adaptive.overrideAttrs
|
kodiPackages.inputstream-adaptive.overrideAttrs
|
||||||
(oldAttrs: {
|
(oldAttrs: let
|
||||||
extraInstallPhase = let
|
inherit (kodiPackages) addonDir;
|
||||||
inherit (kodiPackages) addonDir;
|
namespace = "inputstream.adaptive";
|
||||||
namespace = "inputstream.adaptive";
|
in {
|
||||||
in ''
|
installPhase = ''
|
||||||
|
touch $out/${addonDir}/${namespace}/test
|
||||||
|
'';
|
||||||
|
|
||||||
|
extraInstallPhase = ''
|
||||||
ln -s $out/lib/addons/${namespace}/libcdm_aarch64_loader.so $out/${addonDir}/${namespace}/libcdm_aarch64_loader.so
|
ln -s $out/lib/addons/${namespace}/libcdm_aarch64_loader.so $out/${addonDir}/${namespace}/libcdm_aarch64_loader.so
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
kodi-test = pkgs.kodi-wayland.withPackages (kodiPkgs:
|
||||||
|
with kodiPkgs; [
|
||||||
|
pvr-iptvsimple
|
||||||
|
inputstreamhelper
|
||||||
|
inputstream-adaptive
|
||||||
|
inputstream-rtmp
|
||||||
|
]);
|
||||||
|
|
||||||
mpd-headless =
|
mpd-headless =
|
||||||
(prev.mpdWithFeatures.override {
|
(prev.mpdWithFeatures.override {
|
||||||
ffmpeg = final.ffmpeg_6-headless;
|
ffmpeg = final.ffmpeg_6-headless;
|
||||||
|
|
Loading…
Reference in a new issue