1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 00:56:55 -04:00
nixpkgs/pkgs/tools/text/wdiff/default.nix

21 lines
524 B
Nix
Raw Normal View History

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