about summary refs log tree commit diff
path: root/tools/cheddar/default.nix
blob: c8d7ba5ffef24c5d2d79ab54128ce46fd5211b9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ depot, pkgs, ... }:

depot.third_party.naersk.buildPackage {
  src = ./.;
  doDoc = false;

  override = x: {
    # Use our custom bat syntax set, which is everything from upstream,
    # plus additional languages we care about.
    BAT_SYNTAXES = "${depot.third_party.bat_syntaxes}";
  };
}