aboutsummaryrefslogtreecommitdiff
path: root/tools/whisper-index.nix
blob: 675af7dfe0090161355b530fb83737286f942864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ bionix
, flags ? null
}:

ref:

with bionix;
with lib;
with types;

assert (matchFiletype "whisper-index" { fa = _: true; } ref);

stage {
  name = "whisper-index";
  buildInputs = [ whisper.app ];
  buildCommand = ''
    ln -s ${ref} ref.fa
    mkdir $out
    whisper-index ${optionalString (flags != null) flags} index ref.fa $out $TMPDIR
  '';
}