mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
kodiPackages.youtube: fix dependencies
As per the changelod (https://github.com/anxdpanic/plugin.video.youtube/blob/master/changelog.txt), the dependencies on `six` and `infotagger` have been removed a while ago. Also, a new dependency was added: `inputstream-adaptive`. Fixes: Annoying popup about enabling `inputstream-adaptive` whenever a video is played. Tested on linux-x86-64.
This commit is contained in:
parent
57610d2f8f
commit
08869be075
@ -1,4 +1,4 @@
|
||||
{ lib, buildKodiAddon, fetchFromGitHub, six, requests, infotagger, inputstreamhelper }:
|
||||
{ lib, buildKodiAddon, fetchFromGitHub, requests, inputstream-adaptive, inputstreamhelper }:
|
||||
|
||||
buildKodiAddon rec {
|
||||
pname = "youtube";
|
||||
@ -13,9 +13,8 @@ buildKodiAddon rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
requests
|
||||
infotagger
|
||||
inputstream-adaptive
|
||||
inputstreamhelper
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user