mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
ssvnc: The Enhanced TightVNC Viewer, SSVNC, adds encryption security to VNC connections.
Close #950.
This commit is contained in:
parent
3036e86284
commit
953eecb0fc
23
pkgs/applications/networking/remote/ssvnc/default.nix
Normal file
23
pkgs/applications/networking/remote/ssvnc/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, imake, zlib, openjdk, libX11, libXt, libXmu, libXaw, libXext, libXpm, openjpeg, openssl }:
|
||||
|
||||
let version = "1.0.29"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ssvnc-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/ssvnc/${name}.src.tar.gz";
|
||||
sha256 = "74df32eb8eaa68b07c9693a232ebe42154617c7f3cbe1d4e68d3fe7c557d618d";
|
||||
};
|
||||
|
||||
buildInputs = [ imake zlib openjdk libX11 libXt libXmu libXaw libXext libXpm openjpeg openssl ];
|
||||
|
||||
configurePhase = "makeFlags=PREFIX=$out";
|
||||
|
||||
meta = {
|
||||
description = "VNC viewer that adds encryption security to VNC connections";
|
||||
homepage = "http://www.karlrunge.com/x11vnc/ssvnc.html";
|
||||
license = "GPLv2";
|
||||
maintainers = [ stdenv.lib.maintainers.edwtjo ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -8465,6 +8465,8 @@ let
|
|||
|
||||
skype_call_recorder = callPackage ../applications/networking/instant-messengers/skype-call-recorder { };
|
||||
|
||||
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
|
||||
|
||||
st = callPackage ../applications/misc/st {
|
||||
conf = config.st.conf or null;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue