about summary refs log tree commit diff
path: root/pkgs/tools/text/qshowdiff/default.nix
blob: a2d6e360a374f317de089b77524a19d852ce4f34 (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, qt4, perl}:

stdenv.mkDerivation rec {
  name = "qshowdiff-1.2";
  
  src = fetchurl {
    url = "http://qshowdiff.danfis.cz/files/${name}.tar.gz";
    sha256 = "0i3ssvax4xync9c53jaxribazvh8d8v148l3yiqsfjmqsggw9rh3";
  };

  buildInputs = [ qt4 perl ];

  configurePhase = ''
    mkdir -p $out/{bin,man/man1}
    makeFlags="PREFIX=$out"
  '';

  meta = {
    homepage = http://qshowdiff.danfis.cz/;
    description = "Colourful diff viewer";
    license = stdenv.lib.licenses.gpl3Plus;
  };
}