TigerVNC (without the server Xvnc still)

svn path=/nixpkgs/trunk/; revision=22568
This commit is contained in:
Lluís Batlle i Rossell
2010-07-12 22:15:36 +00:00
parent ffc82db4a9
commit 196e8ad0f6
2 changed files with 22 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{stdenv, fetchurl, libX11, libXext, gettext, libICE, libXtst, libXi, libSM}:
stdenv.mkDerivation {
name = "tigervnc-1.0.1";
src = fetchurl {
url = mirror://sourceforge/tigervnc/tigervnc-1.0.1.tar.gz;
sha256 = "06qxavpq6d71ca224yxvr9h5ynydqhaz2nf06ajin5kjjdliphsr";
};
preConfigure = ''
cd unix
'';
configureFlags = "--enable-nls";
buildInputs = [ libX11 libXext gettext libICE libXtst libXi libSM ];
}