elixir_1_19: 1.19.0-rc.0 -> 1.19.0-rc.1

https://github.com/elixir-lang/elixir/releases/tag/v1.19.0-rc.1
This commit is contained in:
Adam C. Stephens
2025-10-05 08:39:40 -04:00
parent 3627818f3c
commit 65d2c0d8f5
2 changed files with 9 additions and 7 deletions
@@ -1,8 +1,8 @@
{ mkDerivation }:
mkDerivation {
version = "1.19.0-rc.0";
sha256 = "sha256-9Upk3DLxFVetK3fChLr0UjRi2WnvSndVvBW0RfM5hTk=";
# https://hexdocs.pm/elixir/1.19.0-rc.0/compatibility-and-deprecations.html#table-of-deprecations
version = "1.19.0-rc.1";
sha256 = "sha256-GqnIVktRWT7f73a1EolFbKi70fz0ncuyqh3gl/17Zh0=";
# https://hexdocs.pm/elixir/1.19.0-rc.1/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
minimumOTPVersion = "26";
escriptPath = "lib/elixir/scripts/generate_app.escript";
}
@@ -137,9 +137,11 @@ else
};
pos = builtins.unsafeGetAttrPos "sha256" args;
meta = with lib; {
meta = {
homepage = "https://elixir-lang.org/";
description = "Functional, meta-programming aware language built on top of the Erlang VM";
changelog = "https://github.com/elixir-lang/elixir/releases/tag/v${version}";
longDescription = ''
Elixir is a functional, meta-programming aware language built on
@@ -149,8 +151,8 @@ else
with hot code upgrades.
'';
license = licenses.asl20;
platforms = platforms.unix;
teams = [ teams.beam ];
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
teams = [ lib.teams.beam ];
};
}