beamPackages.elixir_1_20: init at 1.20.0-rc.1 (#478913)

This commit is contained in:
Yt
2026-01-14 00:27:19 +00:00
committed by GitHub
4 changed files with 14 additions and 1 deletions
@@ -48,6 +48,11 @@ let
# BEAM-based languages.
elixir = elixir_1_18;
elixir_1_20 = callPackage ../interpreters/elixir/1.20.nix {
inherit erlang;
debugInfo = true;
};
elixir_1_19 = callPackage ../interpreters/elixir/1.19.nix {
inherit erlang;
debugInfo = true;
@@ -1,7 +1,7 @@
import ./generic-builder.nix {
version = "1.19.5";
hash = "sha256-ph7zu0F5q+/QZcsVIwpdU1icN84Rn3nIVpnRelpRIMQ=";
# https://hexdocs.pm/elixir/1.19.0-rc.1/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
# https://hexdocs.pm/elixir/1.19.5/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
minimumOTPVersion = "26";
maximumOTPVersion = "28";
}
@@ -0,0 +1,7 @@
import ./generic-builder.nix {
version = "1.20.0-rc.1";
hash = "sha256-FuTZHDI8ZNe6SHjiaPDZh21Ah7ek4kHqlYVvx0ybqI4=";
# https://hexdocs.pm/elixir/1.20.0-rc.1/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
minimumOTPVersion = "26";
maximumOTPVersion = "28";
}
+1
View File
@@ -51,6 +51,7 @@ in
# `beam.packages.erlang_27.elixir`.
inherit (self.packages.erlang)
elixir
elixir_1_20
elixir_1_19
elixir_1_18
elixir_1_17