kodiPlugins.salts: init at 1.0.98
This commit is contained in:
parent
d5c1a750bf
commit
15821e1b69
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, kodi, steam, libcec_platform, tinyxml }:
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, kodi, steam, libcec_platform, tinyxml }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
@ -92,6 +92,32 @@ in
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
salts = (mkKodiPlugin rec {
|
||||||
|
|
||||||
|
plugin = "salts";
|
||||||
|
namespace = "plugin.video.salts";
|
||||||
|
version = "1.0.98";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
name = plugin + "-" + version + ".tar.gz";
|
||||||
|
owner = "tknorris";
|
||||||
|
repo = plugin;
|
||||||
|
rev = "02cb63360ac1f60c01ec29d1da94902542f9a47a";
|
||||||
|
sha256 = "10cy633g383m1xy6yap46aqzyz96dh62y7c5rn5nvyw8ms18089z";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/tknorris/salts";
|
||||||
|
description = "Stream All The Sources";
|
||||||
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
|
};
|
||||||
|
}).override {
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
url = https://github.com/tknorris/salts/pull/115.patch;
|
||||||
|
sha256 = "157dhp049mw8lna6cg3x549jv2b9zq1vj6v94mil65q2hlw09sjd";
|
||||||
|
}) ];
|
||||||
|
};
|
||||||
|
|
||||||
svtplay = mkKodiPlugin rec {
|
svtplay = mkKodiPlugin rec {
|
||||||
|
|
||||||
plugin = "svtplay";
|
plugin = "svtplay";
|
||||||
|
@ -13699,6 +13699,7 @@ let
|
|||||||
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
||||||
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
||||||
++ optional (config.kodi.enablePVRHTS or false) pvr-hts
|
++ optional (config.kodi.enablePVRHTS or false) pvr-hts
|
||||||
|
++ optional (config.kodi.enableSALTS or false) salts
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user