Skip to content

Commit eba2aed

Browse files
lluchsMic92
authored andcommittedSep 5, 2017
x2goclient: 4.0.5.1 -> 4.1.0.0
Add openssh as dependency for sftp-server. When connecting, x2goclient crashes if it can't find that executable. (cherry picked from commit a8aef18)
1 parent 9e50f29 commit eba2aed

File tree

1 file changed

+5
-5
lines changed
  • pkgs/applications/networking/remote/x2goclient

1 file changed

+5
-5
lines changed
 

‎pkgs/applications/networking/remote/x2goclient/default.nix

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }:
1+
{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, openssh, makeWrapper, qt4 }:
22

33
stdenv.mkDerivation rec {
44
name = "x2goclient-${version}";
5-
version = "4.0.5.1";
5+
version = "4.1.0.0";
66

77
src = fetchurl {
88
url = "http://code.x2go.org/releases/source/x2goclient/${name}.tar.gz";
9-
sha256 = "04gdccqywas029a76k3r9zhr2mfn385i9r06cmi8mznxpczrhkl4";
9+
sha256 = "0sibrj4qppww7mirdixrqrknkyq3g97s64186h88j8k66sy1anab";
1010
};
1111

12-
buildInputs = [ cups libssh libXpm nxproxy openldap qt4 ];
12+
buildInputs = [ cups libssh libXpm nxproxy openldap openssh qt4 ];
1313
nativeBuildInputs = [ makeWrapper ];
1414

1515
patchPhase = ''
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
2525

2626
installTargets = [ "install_client" "install_man" ];
2727
postInstall = ''
28-
wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin";
28+
wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin:${openssh}/libexec";
2929
'';
3030

3131
meta = with stdenv.lib; {

0 commit comments

Comments
 (0)
Please sign in to comment.