mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
conda: Remove version suffix
Currently the `conda-shell` binary is installed as `conda-shell-4.6.14` which is not very friendly to type. With this change the binary is simply installed as `conda-shell`.
This commit is contained in:
parent
6df405b654
commit
8a1c8e6158
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ let
|
|||
'';
|
||||
in
|
||||
buildFHSUserEnv {
|
||||
name = "conda-shell-${version}";
|
||||
name = "conda-shell";
|
||||
targetPkgs = pkgs: (builtins.concatLists [ [ conda ] condaDeps extraPkgs]);
|
||||
profile = ''
|
||||
# Add conda to PATH
|
||||
|
|
Loading…
Reference in a new issue