summary refs log tree commit diff
path: root/pkgs/tools/admin/tightvnc/default.nix
blob: 8b6f3b3835c4d8e4da940785c84d49fd123d44f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# hint: don't forget to start xfs font server (configuration.nix)
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp , perl, xauth, rgb}:

stdenv.mkDerivation {
  name = "tightvnc-1.3.9";
  builder = ./builder.sh;
  gcc=stdenv.gcc.gcc;
	inherit perl;
  src = fetchurl {
    url = mirror://sourceforge/vnc-tight/tightvnc-1.3.9_unixsrc.tar.bz2;
    sha256 = "0nij6kyzwxf7nblwd6riwqhzh8b8xwdffpj379zi5y9mcmiwmalr";
  };
  buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp
  	xauth rgb];
}