summary refs log tree commit diff
path: root/pkgs/tools/text/wdiff/default.nix
blob: aeef86331f35d835a70005439a53d545986e95b3 (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.2";

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

  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;
  };
}