about summary refs log tree commit diff
path: root/pkgs/tools/text/diffstat/default.nix
blob: d1d366ba59981dfe9891f7a4dc5c27644be28723 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{fetchurl, stdenv}:

stdenv.mkDerivation rec {
  name = "diffstat-1.45";

  src = fetchurl {
    url = "ftp://invisible-island.net/diffstat/"+ name +".tgz";
    md5 = "cfe06ffcdbeaaa2fd296db867157ef78";
  };

  meta = {
    homepage = http://invisible-island.net/diffstat/;
    longDescription = "diffstat reads the output of diff and displays a
istogram of the insertions, deletions, and modifications per-file. It
s useful for reviewing large, complex patch files.";
  };
}