summary refs log tree commit diff
path: root/pkgs/tools/admin/tightvnc/default.nix
blob: edc3e7d51e3fa2e35f1f640c0b20634a542a8248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp , perl, xauth}:

stdenv.mkDerivation {
  name = "tightvnc-1.3.10";
  builder = ./builder.sh;
  gcc=stdenv.gcc.gcc;
	inherit perl;
  src = fetchurl {
    url = mirror://sourceforge/vnc-tight/tightvnc-1.3.10_unixsrc.tar.bz2;
    sha256 = "f48c70fea08d03744ae18df6b1499976362f16934eda3275cead87baad585c0d";
  };

  # for the builder script
  inherit xauth;

  buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp
  	xauth];
}