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

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

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

  buildInputs = [ texinfo ];

  checkInputs = [ which ];

  meta = {
    homepage = "https://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.unix;
  };
}