biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / wdiff / default.nix
blob767e02059a5db9dc5f6becd2022a995d219879bd
1 { lib, stdenv, fetchurl, texinfo, which }:
3 stdenv.mkDerivation rec {
4   pname = "wdiff";
5   version = "1.2.2";
7   src = fetchurl {
8     url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz";
9     sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
10   };
12   # for makeinfo
13   nativeBuildInputs = [ texinfo ];
15   buildInputs = [ texinfo ];
17   nativeCheckInputs = [ which ];
19   strictDeps = true;
21   meta = with lib; {
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;
28   };