3
0
Fork 0
forked from mirrors/nixpkgs

Add colordiff package.

svn path=/nixpkgs/trunk/; revision=26860
This commit is contained in:
Nicolas Pierron 2011-04-17 08:26:56 +00:00
parent 0686dd5767
commit ebc8642aec
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, perl /*, xmlto */}:
stdenv.mkDerivation {
name = "colordiff-1.0.9";
src = fetchurl {
url = http://colordiff.sourceforge.net/colordiff-1.0.9.tar.gz;
sha256 = "b2c25d81c10f22380798f146cc5b54ffc5aeb6e5ca1208be2b9508fec1d8e4a6";
};
buildInputs = [ perl /* xmlto */ ];
dontBuild = 1; # do not build doc yet.
installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/man DESTDIR="$out" install'';
}

View file

@ -484,6 +484,8 @@ let
cksfv = callPackage ../tools/networking/cksfv { };
colordiff = callPackage ../tools/text/colordiff { };
convertlit = callPackage ../tools/text/convertlit { };
unifdef = callPackage ../development/tools/misc/unifdef { };