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