mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #227041 from dschrempf/kodi-youtube-fix
kodiPackages.infotagger: init at 0.0.7
This commit is contained in:
commit
8e5ce4ae19
28
pkgs/applications/video/kodi/addons/infotagger/default.nix
Normal file
28
pkgs/applications/video/kodi/addons/infotagger/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, buildKodiAddon, fetchFromGitHub, addonUpdateScript }:
|
||||
buildKodiAddon rec {
|
||||
pname = "infotagger";
|
||||
namespace = "script.module.infotagger";
|
||||
version = "0.0.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jurialmunkey";
|
||||
repo = namespace;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Us7ud0QORGn+ALB4uyISekp0kUYY8nN8uFNg8MlxEB0=";
|
||||
};
|
||||
|
||||
passthru = {
|
||||
# Unusual Python path.
|
||||
pythonPath = "resources/modules";
|
||||
updateScript = addonUpdateScript {
|
||||
attrPath = "kodi.packages.infotagger";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jurialmunkey/script.module.infotagger";
|
||||
description = "Wrapper for new Nexus InfoTagVideo ListItem methods to maintain backwards compatibility";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = teams.kodi.members;
|
||||
};
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
|
||||
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, infotagger, inputstreamhelper }:
|
||||
|
||||
buildKodiAddon rec {
|
||||
pname = "youtube";
|
||||
@ -13,6 +13,7 @@ buildKodiAddon rec {
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
requests
|
||||
infotagger
|
||||
inputstreamhelper
|
||||
];
|
||||
|
||||
|
@ -120,6 +120,8 @@ let self = rec {
|
||||
|
||||
idna = callPackage ../applications/video/kodi/addons/idna { };
|
||||
|
||||
infotagger = callPackage ../applications/video/kodi/addons/infotagger { };
|
||||
|
||||
inputstream-adaptive = callPackage ../applications/video/kodi/addons/inputstream-adaptive { };
|
||||
|
||||
inputstream-ffmpegdirect = callPackage ../applications/video/kodi/addons/inputstream-ffmpegdirect { };
|
||||
|
Loading…
Reference in New Issue
Block a user