2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, texinfo, which }:
|
2010-03-25 11:51:55 +00:00
|
|
|
|
2013-01-28 16:47:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-02-12 04:21:25 +00:00
|
|
|
pname = "wdiff";
|
|
|
|
version = "1.2.2";
|
2010-05-10 17:54:26 +00:00
|
|
|
|
2010-03-25 11:51:55 +00:00
|
|
|
src = fetchurl {
|
2021-02-12 04:21:25 +00:00
|
|
|
url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz";
|
2014-09-23 09:30:13 +00:00
|
|
|
sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
|
2010-03-25 11:51:55 +00:00
|
|
|
};
|
2010-05-10 14:30:44 +00:00
|
|
|
|
2021-03-05 02:31:36 +00:00
|
|
|
# for makeinfo
|
|
|
|
nativeBuildInputs = [ texinfo ];
|
|
|
|
|
2014-01-27 14:54:39 +00:00
|
|
|
buildInputs = [ texinfo ];
|
2010-05-10 14:30:44 +00:00
|
|
|
|
2018-08-08 21:44:15 +00:00
|
|
|
checkInputs = [ which ];
|
|
|
|
|
2021-03-05 02:31:36 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-02-12 04:21:25 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/wdiff/";
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Comparing files on a word by word basis";
|
2021-02-12 04:21:25 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ eelco SuperSandro2000 ];
|
|
|
|
platforms = platforms.unix;
|
2010-03-25 11:51:55 +00:00
|
|
|
};
|
|
|
|
}
|