blob: a9162f333e495343445e20542a026756e9a22e47 (
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 = with pkgs; [ whisper ];
buildCommand = ''
ln -s ${ref} ref.fa
mkdir $out
whisper-index ${optionalString (flags != null) flags} index ref.fa $out $TMPDIR
'';
}
|