aboutsummaryrefslogtreecommitdiff
path: root/tools/last-index.nix
blob: af74f65466e48d6f07abe4f840a05e364ba90635 (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 "last-index" { fa = _: true; } ref);

stage {
  name = "last-index";
  buildInputs = with pkgs; [ last ];
  buildCommand = ''
    ln -s ${ref} ref.fa
    mkdir $out
    lastdb ${optionalString (flags != null) flags} $out/index ref.fa
  '';
}