nixpkgs/pkgs/tools/text/diffstat/default.nix
Nicolas Pierron a0e09761e5 Add diffstat. (by Vincent Ordy)
svn path=/nixpkgs/trunk/; revision=11823
2008-05-14 07:58:32 +00:00

18 lines
476 B
Nix

{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.";
};
}