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 ''; }