colordiff: add meta attributes
This commit is contained in:
parent
ce4c20165b
commit
7061116faa
@ -1,13 +1,23 @@
|
|||||||
{stdenv, fetchurl, perl /*, xmlto */}:
|
{ stdenv, fetchurl, perl /*, xmlto */}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "colordiff-1.0.9";
|
name = "colordiff-1.0.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://colordiff.sourceforge.net/colordiff-1.0.9.tar.gz;
|
url = http://colordiff.sourceforge.net/colordiff-1.0.9.tar.gz;
|
||||||
sha256 = "b2c25d81c10f22380798f146cc5b54ffc5aeb6e5ca1208be2b9508fec1d8e4a6";
|
sha256 = "b2c25d81c10f22380798f146cc5b54ffc5aeb6e5ca1208be2b9508fec1d8e4a6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl /* xmlto */ ];
|
buildInputs = [ perl /* xmlto */ ];
|
||||||
|
|
||||||
dontBuild = 1; # do not build doc yet.
|
dontBuild = 1; # do not build doc yet.
|
||||||
|
|
||||||
installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/share/man/man1 DESTDIR="$out" install'';
|
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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user