* TightVNC.

svn path=/nixpkgs/trunk/; revision=5698
This commit is contained in:
Eelco Dolstra 2006-07-13 14:54:24 +00:00
parent 98b71debbe
commit 05094496b4
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,16 @@
source $stdenv/setup
buildPhase=buildPhase
buildPhase() {
xmkmf
make World
}
installPhase=installPhase
installPhase() {
ensureDir $out/bin
ensureDir $out/man/man1
./vncinstall $out/bin $out/man
}
genericBuild

View file

@ -0,0 +1,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];
}

View file

@ -382,6 +382,11 @@ rec {
inherit (xlibs) libX11;
};
tightvnc = import ../tools/admin/tightvnc {
inherit fetchurl stdenv x11 zlib libjpeg;
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
};
### SHELLS