depot/third_party/tvl/tools/cheddar/default.nix
Default email a291c8690a Project import generated by Copybara.
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
2022-05-19 16:39:52 +02:00

23 lines
570 B
Nix

{ 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}";
};
passthru = {
# Wrapper for cgit which can't be told to pass arguments to a filter
about-filter = pkgs.writeShellScriptBin "cheddar-about" ''
exec ${depot.tools.cheddar}/bin/cheddar --about-filter $@
'';
};
meta.ci.targets = [
"about-filter"
];
}