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