2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, texinfo, which }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-13 14:23:35 +00:00
|
|
|
pname = "wdiff";
|
|
|
|
version = "1.2.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-13 14:23:35 +00:00
|
|
|
url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
|
|
|
|
};
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
# for makeinfo
|
|
|
|
nativeBuildInputs = [ texinfo ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ texinfo ];
|
|
|
|
|
|
|
|
checkInputs = [ which ];
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.gnu.org/software/wdiff/";
|
|
|
|
description = "Comparing files on a word by word basis";
|
2021-02-13 14:23:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ eelco SuperSandro2000 ];
|
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|