summary refs log tree commit diff
path: root/pkgs/applications/misc/deco/default.nix
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/deco/default.nix
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/deco/default.nix')
-rw-r--r--pkgs/applications/misc/deco/default.nix4
1 files changed, 2 insertions, 2 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; {