Files
nixpkgs/pkgs/tools/text/diffstat/default.nix
T

24 lines
727 B
Nix
Raw Normal View History

2014-06-22 13:39:28 +02:00
{ fetchurl, stdenv }:
2008-05-14 07:58:32 +00:00
stdenv.mkDerivation rec {
2016-05-30 23:26:20 +02:00
name = "diffstat-1.61";
2008-05-14 07:58:32 +00:00
src = fetchurl {
2014-06-22 13:39:28 +02:00
url = "ftp://invisible-island.net/diffstat/${name}.tgz";
2016-05-30 23:26:20 +02:00
sha256 = "1vjmda2zfjxg0qkaj8hfqa8g6bfwnn1ja8696rxrjgqq4w69wd95";
2008-05-14 07:58:32 +00:00
};
2014-06-22 13:39:28 +02:00
meta = with stdenv.lib; {
description = "Read output of diff and display a histogram of the changes";
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.
'';
2008-05-14 07:58:32 +00:00
homepage = http://invisible-island.net/diffstat/;
2014-06-22 13:39:28 +02:00
license = licenses.mit;
2014-06-24 14:45:07 -07:00
platforms = platforms.unix;
2014-06-22 13:39:28 +02:00
maintainers = [ maintainers.bjornfor ];
2008-05-14 07:58:32 +00:00
};
}