summary refs log tree commit diff
path: root/pkgs/tools/text/colordiff/default.nix
blob: 34221d803661a00f9964e433b3470fac4b5120f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, perl /*, xmlto */}:

stdenv.mkDerivation {
  name = "colordiff-1.0.13";

  src = fetchurl {
    url = http://www.colordiff.org/colordiff-1.0.13.tar.gz;
    sha256 = "0akcz1p3klsjnhwcqdfq4grs6paljc5c0jzr3mqla5f862hhaa6f";
  };

  buildInputs = [ perl /* xmlto */ ];

  dontBuild = 1; # do not build doc yet.

  installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/share/man/man1 DESTDIR="$out" install'';

  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;
  };
}