nixpkgs/pkgs/tools/text/wdiff/default.nix

23 lines
561 B
Nix
Raw Normal View History

2018-08-08 21:44:15 +00:00
{ stdenv, fetchurl, texinfo, which }:
stdenv.mkDerivation rec {
2014-09-23 09:30:13 +00:00
name = "wdiff-1.2.2";
src = fetchurl {
url = "mirror://gnu/wdiff/${name}.tar.gz";
2014-09-23 09:30:13 +00:00
sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
};
2014-01-27 14:54:39 +00:00
buildInputs = [ texinfo ];
2018-08-08 21:44:15 +00:00
checkInputs = [ which ];
meta = {
homepage = "https://www.gnu.org/software/wdiff/";
description = "Comparing files on a word by word basis";
license = stdenv.lib.licenses.gpl3Plus;
2013-08-16 21:44:33 +00:00
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.unix;
};
}