1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Added GNU wdiff.

svn path=/nixpkgs/trunk/; revision=20817
This commit is contained in:
Eelco Dolstra 2010-03-25 11:51:55 +00:00
parent 09e05eb46a
commit 806099dbc8
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "wdiff-0.5.95";
src = fetchurl {
url = "http://alpha.gnu.org/gnu/wdiff/${name}.tar.gz";
sha256 = "1rha2x8b6i0gk9s2gp61x4acakkx5q9ar1k54x9grmgr6w7fzd97";
};
meta = {
homepage = http://www.gnu.org/software/wdiff/;
description = "A front-end to diff for comparing files on a word per word basis";
license = "GPLv3";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -1778,6 +1778,10 @@ let
inherit stdenv fetchurl neon fuse pkgconfig glib;
};
wdiff = import ../tools/text/wdiff {
inherit fetchurl stdenv;
};
webalizer = import ../tools/networking/webalizer {
inherit stdenv fetchurl zlib libpng gd db4 geoip;
};