monitorcontrol: 4.2.0 → 4.3.3 (#375061)
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / youtube-upnext.nix
blobecd71353d6a3ba57a0d80f0036eb947988e2bd9e
2   buildLua,
3   fetchFromGitHub,
4   curl,
5   unstableGitUpdater,
6   lib,
7 }:
9 buildLua rec {
10   pname = "youtube-upnext";
11   version = "1.1";
13   src = fetchFromGitHub {
14     owner = "cvzi";
15     repo = "mpv-youtube-upnext";
16     rev = "v${version}";
17     hash = "sha256-x9mfyc8JIlOpbSfGEwxXoUtsH0A+K3JPwT/8MHq7ks4=";
18   };
20   postPatch = ''
21     substituteInPlace youtube-upnext.lua \
22       --replace-fail '"curl"' '"${lib.getExe curl}"'
23   '';
25   passthru.updateScript = unstableGitUpdater { };
27   meta = with lib; {
28     description = "Userscript that allows you to play 'up next'/recommended youtube videos";
29     homepage = "https://github.com/cvzi/mpv-youtube-upnext";
30     maintainers = with maintainers; [ bddvlpr ];
31     license = licenses.unfree;
32   };