2008-03-18 19:45:31 +00:00
|
|
|
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp , perl, xauth}:
|
2006-07-13 15:54:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-03-20 10:49:05 +00:00
|
|
|
name = "tightvnc-1.3.10";
|
2006-07-13 15:54:24 +01:00
|
|
|
builder = ./builder.sh;
|
2007-10-04 19:49:04 +01:00
|
|
|
gcc=stdenv.gcc.gcc;
|
2007-10-05 06:55:44 +01:00
|
|
|
inherit perl;
|
2006-07-13 15:54:24 +01:00
|
|
|
src = fetchurl {
|
2009-03-20 10:49:05 +00:00
|
|
|
url = mirror://sourceforge/vnc-tight/tightvnc-1.3.10_unixsrc.tar.bz2;
|
|
|
|
sha256 = "f48c70fea08d03744ae18df6b1499976362f16934eda3275cead87baad585c0d";
|
2006-07-13 15:54:24 +01:00
|
|
|
};
|
2009-03-20 10:49:05 +00:00
|
|
|
|
|
|
|
# for the builder script
|
|
|
|
inherit xauth;
|
|
|
|
|
2007-11-08 14:34:54 +00:00
|
|
|
buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp
|
2008-03-18 19:45:31 +00:00
|
|
|
xauth];
|
2006-07-13 15:54:24 +01:00
|
|
|
}
|