summary refs log tree commit diff
path: root/pkgs/applications/misc
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/misc
parentebb562d29a6b397d1fb30d094cefe2030559711c (diff)
downloadnixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar.gz
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar.bz2
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar.lz
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar.xz
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.tar.zst
nixpkgs-7ec04712423d47148f98fe3c935c60d181af99c4.zip
treewide: s/xlibs/xorg/g (#36889)
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/deco/default.nix4
-rw-r--r--pkgs/applications/misc/playonlinux/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/deco/default.nix b/pkgs/applications/misc/deco/default.nix
index 170018dc972..e5dc011d553 100644
--- a/pkgs/applications/misc/deco/default.nix
+++ b/pkgs/applications/misc/deco/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, scsh, feh, xlibs }:
+{ stdenv, fetchFromGitHub, scsh, feh, xorg }:
 
 stdenv.mkDerivation rec {
   pname = "deco";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   postFixup = ''
     substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
     substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh"
-    substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xlibs.xdpyinfo}/bin/xdpyinfo"
+    substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo"
   '';
 
   meta = with stdenv.lib; {
diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix
index 44650d001e3..9fb15aab2d4 100644
--- a/pkgs/applications/misc/playonlinux/default.nix
+++ b/pkgs/applications/misc/playonlinux/default.nix
@@ -50,7 +50,7 @@ let
     else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
     else throw "Unsupported platform for PlayOnLinux: ${stdenv.system}";
   ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
-  libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xlibs.libX11 ];
+  libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xorg.libX11 ];
 
 in stdenv.mkDerivation {
   name = "playonlinux-${version}";