Making tightvnc use given fonts, instead of depending of an X Font Server started

at the usual unix socket.

svn path=/nixpkgs/trunk/; revision=15624
This commit is contained in:
Lluís Batlle i Rossell
2009-05-16 23:04:06 +00:00
parent c4c6c2a224
commit 9f34ef8cf5
3 changed files with 21 additions and 4 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp , perl, xauth}:
{stdenv, fetchurl, x11, zlib, libjpeg, imake, gccmakedep, libXmu, libXaw, libXpm, libXp , perl, xauth, fontDirectories}:
stdenv.mkDerivation {
name = "tightvnc-1.3.10";
@@ -13,6 +13,8 @@ stdenv.mkDerivation {
# for the builder script
inherit xauth;
inherit fontDirectories;
buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp
xauth];
}