1 { lib, stdenv, fetchurl, texinfo, which }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz";
9 sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
13 nativeBuildInputs = [ texinfo ];
15 buildInputs = [ texinfo ];
17 nativeCheckInputs = [ which ];
22 homepage = "https://www.gnu.org/software/wdiff/";
23 description = "Comparing files on a word by word basis";
24 mainProgram = "wdiff";
25 license = licenses.gpl3Plus;
26 maintainers = with maintainers; [ SuperSandro2000 ];
27 platforms = platforms.unix;