ssvnc: remove

Dead project, broken with openssl 1.1
This commit is contained in:
Robin Gloster 2019-08-21 21:09:12 +02:00
parent 57353fcee6
commit 5ed5493018
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 0 additions and 35 deletions

View File

@ -1,33 +0,0 @@
{ stdenv, fetchurl, imake, zlib, jdk, libX11, libXt, libXmu
, libXaw, libXext, libXpm, openjpeg, openssl, tk, perl }:
stdenv.mkDerivation rec {
name = "ssvnc-${version}";
version = "1.0.29";
src = fetchurl {
url = "mirror://sourceforge/ssvnc/${name}.src.tar.gz";
sha256 = "74df32eb8eaa68b07c9693a232ebe42154617c7f3cbe1d4e68d3fe7c557d618d";
};
buildInputs = [ imake zlib jdk libX11 libXt libXmu libXaw libXext libXpm openjpeg openssl ];
dontUseImakeConfigure = true;
makeFlags = "PREFIX=$(out)";
hardeningDisable = [ "format" ];
postInstall = ''
sed -i -e 's|exec wish|exec ${tk}/bin/wish|' $out/lib/ssvnc/util/ssvnc.tcl
sed -i -e 's|/usr/bin/perl|${perl}/bin/perl|' $out/lib/ssvnc/util/ss_vncviewer
'';
meta = {
description = "VNC viewer that adds encryption security to VNC connections";
homepage = http://www.karlrunge.com/x11vnc/ssvnc.html;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.edwtjo ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -20541,8 +20541,6 @@ in
ncurses = ncurses5;
};
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
stupidterm = callPackage ../applications/misc/stupidterm {
gtk = gtk3;
};