lol

conda: invoke bash login shell to source /etc/profile

The `profile` parameter in `buildFHSUserEnv` is used to create an /etc/profile file
which should be sourced by bash. However, the default runScript is a non-login bash
which does not source /etc/profile. Therefore the conda package breaks, as a script
which is required for `conda activate`, is not sourced. Also the installationPath
parameter is ignored as it is setup in the /etc/profile file.

ostylk 3747daf3 2a40707b

+2
+2
pkgs/tools/package-management/conda/default.nix
··· 66 66 source ${installationPath}/etc/profile.d/conda.sh 67 67 ''; 68 68 69 + runScript = "bash -l"; 70 + 69 71 meta = { 70 72 description = "Conda is a package manager for Python"; 71 73 homepage = "https://conda.io/";