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-01-27 15:54:39 +01:00
|
|
|
name = "wdiff-1.2.1";
|
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-01-27 15:54:39 +01:00
|
|
|
sha256 = "1gb5hpiyikada9bwz63q3g96zs383iskiir0xsqynqnvq1vd4n41";
|
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/;
|
2010-05-10 16:30:44 +02:00
|
|
|
description = "GNU wdiff, 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 ];
|
2013-11-04 20:25:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-03-25 12:51:55 +01:00
|
|
|
};
|
|
|
|
}
|