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

25 lines
732 B
Nix
Raw Normal View History

2014-06-22 20:55:00 +00:00
{ stdenv, fetchurl, perl /*, xmlto */}:
stdenv.mkDerivation {
name = "colordiff-1.0.15";
2014-06-22 20:55:00 +00:00
src = fetchurl {
url = http://www.colordiff.org/colordiff-1.0.15.tar.gz;
sha256 = "0icx4v2h1gy08vhh3qqi2qfyfjp37vgj27hq1fnjz83bg7ly8pjr";
};
buildInputs = [ perl /* xmlto */ ];
2014-06-22 20:55:00 +00:00
dontBuild = 1; # do not build doc yet.
2014-06-22 20:55:00 +00:00
installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/share/man/man1 DESTDIR="$out" install'';
2014-06-22 20:55:00 +00:00
meta = with stdenv.lib; {
description = "Wrapper for 'diff' that produces the same output but with pretty 'syntax' highlighting";
homepage = http://www.colordiff.org/;
license = licenses.gpl3;
platforms = platforms.linux ++ platforms.darwin;
maintainer = with maintainers; [ nckx ];
2014-06-22 20:55:00 +00:00
};
}