nixos-configs/apps/extract-subs/default.nix
matt1432 2f372718fb
All checks were successful
Discord / discord commits (push) Has been skipped
fix(npm): pin typescript to 5.7.3
2025-03-02 13:46:50 -05:00

17 lines
291 B
Nix

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