mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +00:00
45f7246016
https://elixir-lang.org/blog/2023/12/22/elixir-v1-16-0-released/ https://github.com/elixir-lang/elixir/blob/v1.16.0/CHANGELOG.md#changelog-for-elixir-v116
9 lines
327 B
Nix
9 lines
327 B
Nix
{ mkDerivation }:
|
|
mkDerivation {
|
|
version = "1.16.0";
|
|
sha256 = "sha256-nM3TpX18zdjDAFkljsAqwKx/1AQmwDMIQCeL75etTQc=";
|
|
# https://hexdocs.pm/elixir/1.16.0/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp
|
|
minimumOTPVersion = "24";
|
|
escriptPath = "lib/elixir/scripts/generate_app.escript";
|
|
}
|