mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* TigerVNC updated to 1.1.0.
* Build TigerVNC with TLS and PAM support. TLS support is important to support encrypted VNC servers. svn path=/nixpkgs/trunk/; revision=30372
This commit is contained in:
parent
fa47d66e22
commit
d0c78d6a58
1 changed files with 13 additions and 15 deletions
|
@ -1,21 +1,17 @@
|
|||
{stdenv, fetchsvn, libX11, libXext, gettext, libICE, libXtst, libXi, libSM, xorgserver,
|
||||
autoconf, automake, cvs, libtool, nasm, utilmacros, pixman, xkbcomp, xkeyboard_config,
|
||||
fontDirectories, fontutil }:
|
||||
{ stdenv, fetchurl, libX11, libXext, gettext, libICE, libXtst, libXi, libSM, xorgserver
|
||||
, autoconf, automake, cvs, libtool, nasm, utilmacros, pixman, xkbcomp, xkeyboard_config
|
||||
, fontDirectories, fontutil, libgcrypt, gnutls, pam }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tigervnc-svn-4232";
|
||||
src = fetchsvn {
|
||||
url = https://tigervnc.svn.sourceforge.net/svnroot/tigervnc/trunk;
|
||||
rev = 4232;
|
||||
sha256 = "070lsddgx6qj7bpw4p65w54fr7z46vp8wyshv9p0fh3k5izrfnxj";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tigervnc-1.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/tigervnc/${name}.tar.gz";
|
||||
sha256 = "1x30s12fwv9rk0fnwwn631qq0d8rpjjx53bvzlx8c91cba170jsr";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf -vfi
|
||||
'';
|
||||
|
||||
configureFlags = "--enable-nls";
|
||||
|
||||
inherit fontDirectories;
|
||||
|
@ -66,8 +62,10 @@ stdenv.mkDerivation {
|
|||
make TIGERVNC_SRCDIR=`pwd`/../.. install
|
||||
'';
|
||||
|
||||
buildInputs = [ libX11 libXext gettext libICE libXtst libXi libSM autoconf automake cvs
|
||||
libtool nasm utilmacros fontutil ] ++ xorgserver.buildNativeInputs;
|
||||
buildInputs =
|
||||
[ libX11 libXext gettext libICE libXtst libXi libSM autoconf automake cvs
|
||||
libtool nasm utilmacros fontutil libgcrypt gnutls pam
|
||||
] ++ xorgserver.buildNativeInputs;
|
||||
|
||||
propagatedBuildInputs = xorgserver.propagatedBuildNativeInputs;
|
||||
|
||||
|
|
Loading…
Reference in a new issue