beam.packages.erlangR23: remove the attribute

The attribute fails the evaluation as it refers to non-existent
attribute:

    nix-repl> beam.packages.erlangR23
    ...
    error: attribute 'erlang_23' missing
This commit is contained in:
Sergei Trofimovich 2023-12-26 22:27:20 +00:00
parent 9d52d8789e
commit 30b9deac4f

View file

@ -13,7 +13,7 @@ let
self = beam;
# Aliases added 2023-03-21
versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" "23" ];
versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" ];
interpretersAliases = versionLoop (version: {
"erlangR${version}" = self.interpreters."erlang_${version}";