core/pkgs/by-name/py/python/conda/default.nix

23 lines
546 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ pkgs }: {
# List of libraries that are needed for conda binary packages.
# When installing a conda binary package, just extend
# the `buildInputs` with `condaAutopatchLibs`.
2024-05-13 21:24:10 +00:00
condaPatchelfLibs = builtins.map (p: p.lib or p)
([ pkgs.alsa-lib pkgs.cups pkgs.gcc-unwrapped pkgs.libGL ]
++ (with pkgs.xorg; [
libSM
libICE
libX11
libXau
libXdamage
libXi
libXrender
libXrandr
libXcomposite
libXcursor
libXtst
libXScrnSaver
]));
2024-05-02 00:46:19 +00:00
}