about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/x2goclient
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2019-02-16 12:29:50 +0100
committerSarah Brofeldt <sbrofeldt@gmail.com>2019-02-16 12:30:18 +0100
commit4ce2d58a0f754824b87c917b5607c9b77da61410 (patch)
tree06ebbacfbc5b95144b092db186ec008823ea8323 /pkgs/applications/networking/remote/x2goclient
parent4aaa34f7244126c31af23cb92850981715f71557 (diff)
x2goclient: Use nx-libs instead of nxproxy
nx-proxy was removed in favour of nx-libs
Diffstat (limited to 'pkgs/applications/networking/remote/x2goclient')
-rw-r--r--pkgs/applications/networking/remote/x2goclient/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix
index 3d65b7a621b3d..87fe60c7740cc 100644
--- a/pkgs/applications/networking/remote/x2goclient/default.nix
+++ b/pkgs/applications/networking/remote/x2goclient/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, cups, libssh, libXpm, nxproxy, openldap, openssh
+{ stdenv, fetchgit, cups, libssh, libXpm, nx-libs, openldap, openssh
 , makeWrapper, qtbase, qtsvg, qtx11extras, qttools, phonon, pkgconfig }:
 
 stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
    sha256 = "05gfs11m259bchy3k0ihqpwg9wf8lp94rbca5dzla9fjzrb7pyy4";
   };
 
-  buildInputs = [ cups libssh libXpm nxproxy openldap openssh
+  buildInputs = [ cups libssh libXpm nx-libs openldap openssh
                   qtbase qtsvg qtx11extras qttools phonon pkgconfig ];
   nativeBuildInputs = [ makeWrapper ];
 
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
 
   installTargets = [ "install_client" "install_man" ];
   postInstall = ''
-    wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin:${openssh}/libexec";
+    wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nx-libs}/bin:${openssh}/libexec";
   '';
 
   meta = with stdenv.lib; {