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