From fc3c17c5acc1e29825c7a8e918747033db6b60f4 Mon Sep 17 00:00:00 2001 From: Pontus Stenetorp Date: Fri, 12 Mar 2021 16:07:29 +0000 Subject: [PATCH] julia: introduce LTS and stable aliases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 37200d26f12..c6e0b67e587 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };