summary refs log tree commit diff
path: root/pkgs/tools/admin/tightvnc/default.nix
blob: 45b9b6bfd0a278d49d09075158d8eb84a49572ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp}:

stdenv.mkDerivation {
  name = "tightvnc-1.3dev7";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://surfnet.dl.sourceforge.net/sourceforge/vnc-tight/tightvnc-1.3dev7_unixsrc.tar.bz2;
    md5 = "8e9e63f19d8351a5359c0cc15d96c18c";
  };
  buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp];
}