17 lines
291 B
Nix
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.
|
|
'';
|
|
}
|