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

stdenv.mkDerivation rec {
  name = "wdiff-1.2.1";

  src = fetchurl {
    url = "mirror://gnu/wdiff/${name}.tar.gz";
    sha256 = "1gb5hpiyikada9bwz63q3g96zs383iskiir0xsqynqnvq1vd4n41";
  };

  buildInputs = [ texinfo ];

  meta = {
    homepage = http://www.gnu.org/software/wdiff/;
    description = "Comparing files on a word by word basis";
    license = stdenv.lib.licenses.gpl3Plus;
    maintainers = [ stdenv.lib.maintainers.eelco ];
    platforms = stdenv.lib.platforms.linux;
  };
}