Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildLua,
|
|
ffsubsync,
|
|
}:
|
|
|
|
buildLua {
|
|
pname = "autosubsync-mpv";
|
|
version = "0-unstable-2024-10-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joaquintorres";
|
|
repo = "autosubsync-mpv";
|
|
rev = "125ac13d1b84b3a64bb2e912225a8356c1c01364";
|
|
sha256 = "sha256-Xwu8WTB3p3YDTydfyidF/zpN6CyTQyZgQvGX/HAa9hw=";
|
|
};
|
|
|
|
# While nixpkgs only packages alass, we might as well make that the default
|
|
patchPhase = ''
|
|
runHook prePatch
|
|
substituteInPlace autosubsync.lua \
|
|
--replace-warn 'ffsubsync_path = ""' 'ffsubsync_path = "${lib.getExe ffsubsync}"' \
|
|
--replace-warn 'audio_subsync_tool = "ask"' 'audio_subsync_tool = "ffsubsync"' \
|
|
--replace-warn 'altsub_subsync_tool = "ask"' 'altsub_subsync_tool = "ffsubsync"'
|
|
runHook postPatch
|
|
'';
|
|
|
|
scriptPath = "./";
|
|
passthru.scriptName = "autosubsync-mpv";
|
|
|
|
meta = with lib; {
|
|
description = "Automatically sync subtitles in mpv using the `n` button";
|
|
homepage = "https://github.com/joaquintorres/autosubsync-mpv";
|
|
maintainers = with maintainers; [ kovirobi ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|