Unverified Commit a3a67865 authored by nicoo's avatar nicoo Committed by GitHub
Browse files

Merge #356158: init mpvScripts.autosub at 0-unstable-2021-06-29

parents 582cd0d2 8a8e3493
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  lib,
  buildLua,
  fetchFromGitHub,
  unstableGitUpdater,
  python3Packages,
}:
buildLua {
  pname = "mpv-autosub";
  version = "0-unstable-2021-06-29";
  scriptPath = "autosub.lua";

  src = fetchFromGitHub {
    owner = "davidde";
    repo = "mpv-autosub";
    rev = "35115355bd339681f97d067538356c29e5b14afa";
    hash = "sha256-BKT/Tzwl5ZA4fbdc/cxz0+CYc1zyY/KOXc58x5GYow0=";
  };

  preInstall = ''
    substituteInPlace autosub.lua --replace-fail \
      "local subliminal = '/home/david/.local/bin/subliminal'" \
      "local subliminal = '${lib.getExe' python3Packages.subliminal "subliminal"}'"
  '';

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Fully automatic subtitle downloading for the MPV media player";
    homepage = "https://github.com/davidde/mpv-autosub";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.octvs ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ let
        ;

      buildLua = callPackage ./buildLua.nix { };
      autosub = callPackage ./autosub.nix { };
      autosubsync-mpv = callPackage ./autosubsync-mpv.nix { };
      chapterskip = callPackage ./chapterskip.nix { };
      convert = callPackage ./convert.nix { };