mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
35 lines
1.0 KiB
Nix
35 lines
1.0 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 ];
|
|
};
|
|
}
|