TigerVNC (without the server Xvnc still)
svn path=/nixpkgs/trunk/; revision=22568
This commit is contained in:
parent
ffc82db4a9
commit
196e8ad0f6
17
pkgs/tools/admin/tigervnc/default.nix
Normal file
17
pkgs/tools/admin/tigervnc/default.nix
Normal 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 ];
|
||||||
|
}
|
@ -1816,6 +1816,11 @@ let
|
|||||||
inherit fetchcvs stdenv autoconf automake libtool;
|
inherit fetchcvs stdenv autoconf automake libtool;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tigervnc = import ../tools/admin/tigervnc {
|
||||||
|
inherit fetchurl stdenv gettext;
|
||||||
|
inherit (xlibs) libX11 libXext libICE libXtst libXi libSM;
|
||||||
|
};
|
||||||
|
|
||||||
tightvnc = import ../tools/admin/tightvnc {
|
tightvnc = import ../tools/admin/tightvnc {
|
||||||
inherit fetchurl stdenv x11 zlib libjpeg perl;
|
inherit fetchurl stdenv x11 zlib libjpeg perl;
|
||||||
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp xauth;
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp xauth;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user