julia: introduce LTS and stable aliases

According to the Julia release process [1] there will only ever be two
supported release branches at any given time: stable and LTS. Once a new
version of either is released, support for the previous release will be
dropped upstream. Introducing aliases for these branches allows our
users to easily track either depending on their need for stability.

[1]: https://julialang.org/blog/2019/08/release-process/#long_term_support
This commit is contained in:
Pontus Stenetorp
2021-03-12 16:07:29 +00:00
parent 2632a33605
commit fc3c17c5ac

View File

@@ -10989,8 +10989,10 @@ in
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;
};
julia_1 = julia_10;
julia = julia_15;
julia-lts = julia_10;
julia-stable = julia_15;
julia_1 = julia_10;
jwasm = callPackage ../development/compilers/jwasm { };