nixpkgs/pkgs/tools/text/colordiff/default.nix
Robert Helgesson d66a1a46e6 colordiff: add archive URL
When a new version of colordiff is released the old tarball is moved to
the archive directory. This breaks builds until the derivation is
updated to the new version. This commit lets fetchurl know about the
archive URL.
2015-12-16 00:49:43 +01:00

28 lines
800 B
Nix

{ stdenv, fetchurl, perl /*, xmlto */}:
stdenv.mkDerivation rec {
name = "colordiff-1.0.16";
src = fetchurl {
urls = [
"http://www.colordiff.org/${name}.tar.gz"
"http://www.colordiff.org/archive/${name}.tar.gz"
];
sha256 = "12qkkw13261dra8pg7mzx4r8p9pb0ajb090bib9j1s6hgphwzwga";
};
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 ++ platforms.darwin;
maintainer = with maintainers; [ nckx ];
};
}