treewide: Mass replace 'xorg.libXext}/lib' to refer the 'out' output
This commit is contained in:
parent
eec609fcc1
commit
40ef23e7ed
|
@ -20,7 +20,7 @@ in
|
||||||
services.xserver.windowManager.session = singleton
|
services.xserver.windowManager.session = singleton
|
||||||
{ name = "metacity";
|
{ name = "metacity";
|
||||||
start = ''
|
start = ''
|
||||||
env LD_LIBRARY_PATH=${xorg.libX11.out}/lib:${xorg.libXext}/lib:/usr/lib/
|
env LD_LIBRARY_PATH=${xorg.libX11.out}/lib:${xorg.libXext.out}/lib:/usr/lib/
|
||||||
# !!! Hack: load the schemas for Metacity.
|
# !!! Hack: load the schemas for Metacity.
|
||||||
GCONF_CONFIG_SOURCE=xml::~/.gconf ${gnome.GConf}/bin/gconftool-2 \
|
GCONF_CONFIG_SOURCE=xml::~/.gconf ${gnome.GConf}/bin/gconftool-2 \
|
||||||
--makefile-install-rule ${gnome.metacity}/etc/gconf/schemas/*.schemas # */
|
--makefile-install-rule ${gnome.metacity}/etc/gconf/schemas/*.schemas # */
|
||||||
|
|
|
@ -65,7 +65,7 @@ stdenv.mkDerivation {
|
||||||
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":"
|
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":"
|
||||||
[ "${xorg.libXrandr}/lib"
|
[ "${xorg.libXrandr}/lib"
|
||||||
"${xorg.libXrender}/lib"
|
"${xorg.libXrender}/lib"
|
||||||
"${xorg.libXext}/lib"
|
"${xorg.libXext.out}/lib"
|
||||||
"${xorg.libX11.out}/lib"
|
"${xorg.libX11.out}/lib"
|
||||||
"${xorg.libXinerama}/lib"
|
"${xorg.libXinerama}/lib"
|
||||||
];
|
];
|
||||||
|
|
|
@ -13219,7 +13219,7 @@ let self = _self // overrides; _self = with self; {
|
||||||
};
|
};
|
||||||
buildInputs = [ pkgs.xorg.libXext pkgs.xorg.libXScrnSaver pkgs.xorg.libX11 ];
|
buildInputs = [ pkgs.xorg.libXext pkgs.xorg.libXScrnSaver pkgs.xorg.libX11 ];
|
||||||
propagatedBuildInputs = [ InlineC ];
|
propagatedBuildInputs = [ InlineC ];
|
||||||
patchPhase = ''sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11.out}/lib/ -L${pkgs.xorg.libXext}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm'';
|
patchPhase = ''sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11.out}/lib/ -L${pkgs.xorg.libXext.out}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm'';
|
||||||
meta = {
|
meta = {
|
||||||
description = "Get the idle time of X11";
|
description = "Get the idle time of X11";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue