summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-03-13 10:16:03 +0000
committerzimbatm <zimbatm@zimbatm.com>2018-03-13 10:16:03 +0000
commit7ec04712423d47148f98fe3c935c60d181af99c4 (patch)
treea15663ddc34ee04316c32f3cf59b2fca8d9cd6b6 /pkgs/applications/networking/remote
parentebb562d29a6b397d1fb30d094cefe2030559711c (diff)
downloadnixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar.gz
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar.bz2
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar.lz
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar.xz
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.tar.zst
nixlib-7ec04712423d47148f98fe3c935c60d181af99c4.zip
treewide: s/xlibs/xorg/g (#36889)
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/citrix-receiver/default.nix12
-rw-r--r--pkgs/applications/networking/remote/teamviewer/default.nix2
2 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/networking/remote/citrix-receiver/default.nix b/pkgs/applications/networking/remote/citrix-receiver/default.nix
index 51a37d3152b7..d5982f33e78e 100644
--- a/pkgs/applications/networking/remote/citrix-receiver/default.nix
+++ b/pkgs/applications/networking/remote/citrix-receiver/default.nix
@@ -15,7 +15,7 @@
 , cairo
 , pango
 , gnome3
-, xlibs
+, xorg
 , libpng12
 , freetype
 , fontconfig
@@ -143,11 +143,11 @@ let
         cairo
         pango
         gnome3.dconf
-        xlibs.libX11
-        xlibs.libXext
-        xlibs.libXrender
-        xlibs.libXinerama
-        xlibs.libXfixes
+        xorg.libX11
+        xorg.libXext
+        xorg.libXrender
+        xorg.libXinerama
+        xorg.libXfixes
         libpng12
         libidn
         zlib
diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix
index 4ff649dbf2a0..df7cba3daec9 100644
--- a/pkgs/applications/networking/remote/teamviewer/default.nix
+++ b/pkgs/applications/networking/remote/teamviewer/default.nix
@@ -9,7 +9,7 @@ let
 
   mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]);
 
-  deps = ps: (with ps; [ dbus zlib alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst libXinerama]);
+  deps = ps: (with ps; [ dbus zlib alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xorg; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst libXinerama]);
   tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux);
   tvldpath64 = lib.makeLibraryPath (deps pkgs);
 in