tigervnc: correct default ssh client path (#29084)

* tigervnc: correct default ssh client path

The -via command sets up an ssh tunnel, but is hardcoded to /usr/bin/ssh
upstream.  This patches it to use the nixpkgs openssh client.

* tigervnc: patch ssh path correctly
This commit is contained in:
Jason Miller 2017-09-08 11:45:17 -07:00 committed by Jörg Thalheim
parent 9f2ff1d31a
commit e9183fd2d4

View File

@ -5,7 +5,7 @@
, cmake, gettext, libtool , cmake, gettext, libtool
, glproto, mesa_glu , glproto, mesa_glu
, gnutls, pam, nettle , gnutls, pam, nettle
, xterm }: , xterm, openssh }:
with stdenv.lib; with stdenv.lib;
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
inherit fontDirectories; inherit fontDirectories;
patchPhase = '' postPatch = ''
sed -i -e '/^\$cmd \.= " -pn";/a$cmd .= " -xkbdir ${xkeyboard_config}/etc/X11/xkb";' unix/vncserver sed -i -e '/^\$cmd \.= " -pn";/a$cmd .= " -xkbdir ${xkeyboard_config}/etc/X11/xkb";' unix/vncserver
fontPath= fontPath=
for i in $fontDirectories; do for i in $fontDirectories; do
@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
done done
done done
sed -i -e '/^\$cmd \.= " -pn";/a$cmd .= " -fp '"$fontPath"'";' unix/vncserver sed -i -e '/^\$cmd \.= " -pn";/a$cmd .= " -fp '"$fontPath"'";' unix/vncserver
substituteInPlace vncviewer/vncviewer.cxx \
--replace '"/usr/bin/ssh' '"${openssh}/bin/ssh'
''; '';
dontUseCmakeBuildDir = true; dontUseCmakeBuildDir = true;