treewide: remove all uses of 'with xorg;' in pkgs

this shouldn't create any rebuilds

this was done manually by grepping for `with xorg` and `with pkgs.xorg`
This commit is contained in:
quantenzitrone
2026-01-25 22:26:00 +01:00
parent 6095dea7ef
commit c7c77c1aee
78 changed files with 841 additions and 961 deletions
@@ -5,25 +5,24 @@
# When installing a conda binary package, just extend
# the `buildInputs` with `condaAutopatchLibs`.
condaPatchelfLibs = map (p: p.lib or p) (
with pkgs;
[
pkgs.alsa-lib
pkgs.cups
pkgs.gcc-unwrapped
pkgs.libGL
alsa-lib
cups
gcc-unwrapped
libGL
xorg.libSM
xorg.libICE
xorg.libX11
xorg.libXau
xorg.libXdamage
xorg.libXi
xorg.libXrender
xorg.libXrandr
xorg.libXcomposite
xorg.libXcursor
xorg.libXtst
xorg.libXScrnSaver
]
++ (with pkgs.xorg; [
libSM
libICE
libX11
libXau
libXdamage
libXi
libXrender
libXrandr
libXcomposite
libXcursor
libXtst
libXScrnSaver
])
);
}