about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-09-05 15:23:47 +0100
committerGitHub <noreply@github.com>2017-09-05 15:23:47 +0100
commite342715f3e31e6d2f40444adcff663c23e7a67e8 (patch)
tree89933ef32a193579e079ff8bf33f9ab5dbfa20fb /pkgs/applications/networking
parent4fd3afa80b746b5b146756ca097de62639efafb3 (diff)
parenta8aef188c81bc8daffb4a81e8ff3101fd8e8500a (diff)
downloadnixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar.gz
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar.bz2
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar.lz
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar.xz
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.tar.zst
nixlib-e342715f3e31e6d2f40444adcff663c23e7a67e8.zip
Merge pull request #28983 from lluchs/x2goclient-4.1.0.0
x2goclient: 4.0.5.1 -> 4.1.0.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/remote/x2goclient/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix
index 02a25b9a2704..3edf45d9acd9 100644
--- a/pkgs/applications/networking/remote/x2goclient/default.nix
+++ b/pkgs/applications/networking/remote/x2goclient/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }:
+{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, openssh, makeWrapper, qt4 }:
 
 stdenv.mkDerivation rec {
   name = "x2goclient-${version}";
-  version = "4.0.5.1";
+  version = "4.1.0.0";
 
   src = fetchurl {
     url = "http://code.x2go.org/releases/source/x2goclient/${name}.tar.gz";
-    sha256 = "04gdccqywas029a76k3r9zhr2mfn385i9r06cmi8mznxpczrhkl4";
+    sha256 = "0sibrj4qppww7mirdixrqrknkyq3g97s64186h88j8k66sy1anab";
   };
 
-  buildInputs = [ cups libssh libXpm nxproxy openldap qt4 ];
+  buildInputs = [ cups libssh libXpm nxproxy openldap openssh qt4 ];
   nativeBuildInputs = [ makeWrapper ];
 
   patchPhase = ''
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
 
   installTargets = [ "install_client" "install_man" ];
   postInstall = ''
-    wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin";
+    wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin:${openssh}/libexec";
   '';
 
   meta = with stdenv.lib; {