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