nixos-configs/apps/extract-subs/default.nix
matt1432 cdf28bd4f5
All checks were successful
Discord / discord commits (push) Has been skipped
feat(apps): type check scripts in checkPhase
2025-03-07 16:51:01 -05:00

17 lines
291 B
Nix

{
buildApp,
ffmpeg-full,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-tt3daOC3Qen0LqcN2St0AUqbywJVQlY1dFpt1O3yLV8=";
runtimeInputs = [
ffmpeg-full
];
meta.description = ''
Extract all `srt` subtitle files from a `mkv` video with the appropriate name.
'';
}