1{ pkgs }: {
2
3 # List of libraries that are needed for conda binary packages.
4 # When installing a conda binary package, just extend
5 # the `buildInputs` with `condaAutopatchLibs`.
6 condaPatchelfLibs = builtins.map (p: p.lib or p) ([
7 pkgs.alsa-lib
8 pkgs.cups
9 pkgs.gcc-unwrapped
10 pkgs.libGL
11 ] ++ (with pkgs.xorg; [
12 libSM
13 libICE
14 libX11
15 libXau
16 libXdamage
17 libXi
18 libXrender
19 libXrandr
20 libXcomposite
21 libXcursor
22 libXtst
23 libXScrnSaver])
24 );
25}