summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/conda/default.nix
blob: 77bda13f266c4c74b20cafb1a139e54eb2e6abc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ pkgs }: {

  # List of libraries that are needed for conda binary packages.
  # When installing a conda binary package, just extend
  # the `buildInputs` with `condaAutopatchLibs`.
  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])
  );
}