blob: 17efae91ff8955511d3a0d383fc5b0f21fe23430 (
plain) (
tree)
|
|
{ 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"
];
}
|