2018-08-08 22:44:15 +01:00
|
|
|
{ stdenv, fetchurl, texinfo, which }:
|
2010-03-25 11:51:55 +00:00
|
|
|
|
2013-01-28 16:47:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-09-23 10:30:13 +01:00
|
|
|
name = "wdiff-1.2.2";
|
2010-05-10 18:54:26 +01:00
|
|
|
|
2010-03-25 11:51:55 +00:00
|
|
|
src = fetchurl {
|
2010-05-10 18:54:26 +01:00
|
|
|
url = "mirror://gnu/wdiff/${name}.tar.gz";
|
2014-09-23 10:30:13 +01:00
|
|
|
sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
|
2010-03-25 11:51:55 +00:00
|
|
|
};
|
2010-05-10 15:30:44 +01:00
|
|
|
|
2014-01-27 14:54:39 +00:00
|
|
|
buildInputs = [ texinfo ];
|
2010-05-10 15:30:44 +01:00
|
|
|
|
2018-08-08 22:44:15 +01:00
|
|
|
checkInputs = [ which ];
|
|
|
|
|
2010-03-25 11:51:55 +00:00
|
|
|
meta = {
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/wdiff/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Comparing files on a word by word basis";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2018-01-09 16:16:40 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-03-25 11:51:55 +00:00
|
|
|
};
|
|
|
|
}
|