Adding qshowdiff.

svn path=/nixpkgs/trunk/; revision=20633
This commit is contained in:
Lluís Batlle i Rossell 2010-03-15 14:26:52 +00:00
parent d44be49320
commit f68b2277b7
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, qt, perl}:
stdenv.mkDerivation rec {
name = "qshowdiff-1.2";
src = fetchurl {
url = http://qshowdiff.danfis.cz/files/qshowdiff-1.2.tar.gz;
sha256 = "0i3ssvax4xync9c53jaxribazvh8d8v148l3yiqsfjmqsggw9rh3";
};
buildInputs = [ qt perl ];
configurePhase = ''
ensureDir $out/{bin,man/man1}
makeFlags="PREFIX=$out"
'';
meta = {
homepage = http://qshowdiff.danfis.cz/;
description = "Colourful diff viewer";
license = "GPLv3+";
};
}

View file

@ -1422,6 +1422,11 @@ let
inherit stdenv fetchurl;
};
qshowdiff = import ../tools/text/qshowdiff {
inherit fetchurl stdenv perl;
qt = qt4;
};
reiser4progs = import ../tools/filesystems/reiser4progs {
inherit fetchurl stdenv libaal;
};