Making tigervnc build with the xserver 1.8
svn path=/nixpkgs/trunk/; revision=22802
This commit is contained in:
parent
b1afe4e7ac
commit
41b7a3cda6
2 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{stdenv, fetchsvn, libX11, libXext, gettext, libICE, libXtst, libXi, libSM, xorgserver,
|
||||
autoconf, automake, cvs, libtool, nasm, utilmacros, pixman, xkbcomp, xkeyboard_config,
|
||||
fontDirectories }:
|
||||
fontDirectories, fontutil }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
|
@ -48,7 +48,7 @@ stdenv.mkDerivation {
|
|||
do
|
||||
patch -p1 < $a
|
||||
done
|
||||
patch -p1 < ../xserver17.patch
|
||||
patch -p1 < ../xserver18.patch
|
||||
autoreconf -vfi
|
||||
./configure --prefix=$out --disable-xinerama --disable-xvfb --disable-xnest --disable-xorg --disable-dmx --disable-dri --disable-dri2 --disable-glx
|
||||
make TIGERVNC_SRCDIR=`pwd`/../..
|
||||
|
@ -67,7 +67,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
buildInputs = [ libX11 libXext gettext libICE libXtst libXi libSM autoconf automake cvs
|
||||
libtool nasm utilmacros ] ++ xorgserver.buildNativeInputs;
|
||||
libtool nasm utilmacros fontutil ] ++ xorgserver.buildNativeInputs;
|
||||
|
||||
propagatedBuildInputs = xorgserver.propagatedBuildNativeInputs;
|
||||
|
||||
|
|
|
@ -1816,7 +1816,8 @@ let
|
|||
|
||||
tigervnc = import ../tools/admin/tigervnc {
|
||||
inherit fetchsvn stdenv gettext autoconf automake cvs libtool nasm xkeyboard_config;
|
||||
inherit (xorg) libX11 libXext libICE libXtst libXi libSM xorgserver utilmacros pixman xkbcomp;
|
||||
inherit (xorg) libX11 libXext libICE libXtst libXi libSM xorgserver utilmacros pixman xkbcomp
|
||||
fontutil;
|
||||
fontDirectories = [ xorg.fontadobe75dpi xorg.fontmiscmisc xorg.fontcursormisc
|
||||
xorg.fontbhlucidatypewriter75dpi ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue