Files

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

41 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
fetchurl,
lib,
stdenv,
zstd,
directoryListingUpdater,
}:
stdenv.mkDerivation rec {
pname = "diffstat";
version = "1.68";
src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/diffstat/diffstat-${version}.tgz"
"https://invisible-mirror.net/archives/diffstat/diffstat-${version}.tgz"
];
hash = "sha256-ifkpSorHT8728bmsQI9D6+340gjj7+C5m0rMFtxlgsc=";
};
buildInputs = [ zstd ];
passthru.updateScript = directoryListingUpdater {
url = "https://invisible-island.net/archives/diffstat/";
};
meta = with lib; {
description = "Read output of diff and display a histogram of the changes";
mainProgram = "diffstat";
longDescription = ''
diffstat reads the output of diff and displays a histogram of the
insertions, deletions, and modifications per-file. It is useful for
reviewing large, complex patch files.
'';
homepage = "https://invisible-island.net/diffstat/";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}