mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
treewide: Mass replace 'xorg.libXext}/lib' to refer the 'out' output
This commit is contained in:
parent
eec609fcc1
commit
40ef23e7ed
3 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ in
|
|||
services.xserver.windowManager.session = singleton
|
||||
{ name = "metacity";
|
||||
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.
|
||||
GCONF_CONFIG_SOURCE=xml::~/.gconf ${gnome.GConf}/bin/gconftool-2 \
|
||||
--makefile-install-rule ${gnome.metacity}/etc/gconf/schemas/*.schemas # */
|
||||
|
|
|
@ -65,7 +65,7 @@ stdenv.mkDerivation {
|
|||
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":"
|
||||
[ "${xorg.libXrandr}/lib"
|
||||
"${xorg.libXrender}/lib"
|
||||
"${xorg.libXext}/lib"
|
||||
"${xorg.libXext.out}/lib"
|
||||
"${xorg.libX11.out}/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 ];
|
||||
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 = {
|
||||
description = "Get the idle time of X11";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue