841d9c7fc1
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
29 lines
721 B
Nix
29 lines
721 B
Nix
{ lib, buildKodiAddon, fetchFromGitHub, signals, inputstream-adaptive, inputstreamhelper, requests, myconnpy }:
|
|
|
|
buildKodiAddon rec {
|
|
pname = "netflix";
|
|
namespace = "plugin.video.netflix";
|
|
version = "1.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CastagnaIT";
|
|
repo = namespace;
|
|
rev = "v${version}";
|
|
sha256 = "0k5jz6zjsazf0z2xv7gk848p4hvkzd79d0kl71a5d20f96g3938k";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
signals
|
|
inputstream-adaptive
|
|
inputstreamhelper
|
|
requests
|
|
myconnpy
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
|
|
description = "Netflix VOD Services Add-on";
|
|
license = licenses.mit;
|
|
maintainers = teams.kodi.members;
|
|
};
|
|
}
|