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