40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
zstd,
|
|
directoryListingUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "diffstat";
|
|
version = "1.67";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.invisible-island.net/diffstat/diffstat-${version}.tgz"
|
|
"https://invisible-mirror.net/archives/diffstat/diffstat-${version}.tgz"
|
|
];
|
|
hash = "sha256-dg7QyZxtZDI41BuA5gJ4zxaD/7lKKDlUrH7xaMhSdmo=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|