27 lines
635 B
Nix
27 lines
635 B
Nix
|
{ lib, buildKodiAddon, fetchFromGitHub, signals, inputstreamhelper, requests, myconnpy }:
|
||
|
buildKodiAddon rec {
|
||
|
pname = "netflix";
|
||
|
namespace = "plugin.video.netflix";
|
||
|
version = "1.14.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "CastagnaIT";
|
||
|
repo = namespace;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0vv3234gg4brp0gvrsl4vdskmpfbyk4z7cjmmj31zn4m8j33japn";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
signals
|
||
|
inputstreamhelper
|
||
|
requests
|
||
|
myconnpy
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
|
||
|
description = "Netflix VOD Services Add-on";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|