Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
340 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildBatExtrasPkg,
less,
coreutils,
gitMinimal,
delta,
withDelta ? true,
}:
buildBatExtrasPkg {
name = "batdiff";
dependencies = [
less
coreutils
gitMinimal
]
++ lib.optional withDelta delta;
meta.description = "Diff a file against the current git index, or display the diff between two files";
}