about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
blob: 44f09b8f21fe8cb8bd2cff3014e6828c341a53f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildLua, fetchFromGitHub, unstableGitUpdater, yt-dlp }:

buildLua rec {
  pname = "mpv-playlistmanager";
  version = "0-unstable-2024-02-26";

  src = fetchFromGitHub {
    owner = "jonniek";
    repo = "mpv-playlistmanager";
    rev = "1911dc053951169c98cfcfd9f44ef87d9122ca80";
    hash = "sha256-pcdOMhkivLF5B86aNuHrqj77DuYLAFGlwFwY7jxkDkE=";
  };
  passthru.updateScript = unstableGitUpdater {};

  postPatch = ''
    substituteInPlace playlistmanager.lua \
      --replace 'youtube_dl_executable = "youtube-dl",' \
      'youtube_dl_executable = "${lib.getBin yt-dlp}/bin/yt-dlp"',
  '';

  meta = with lib; {
    description = "Mpv lua script to create and manage playlists";
    homepage = "https://github.com/jonniek/mpv-playlistmanager";
    license = licenses.unlicense;
    maintainers = with maintainers; [ lunik1 ];
  };
}