summary refs log tree commit diff
path: root/pkgs/development/beam-modules/default.nix
diff options
context:
space:
mode:
authorcw <789@webuhu.at>2020-01-27 10:51:55 +0100
committercw <789@webuhu.at>2020-01-27 11:58:02 +0100
commite3863ab2691a34cb3868aca6a35caf97115a83c3 (patch)
tree8b92c9e628966a7cdab664af3df15c203e5482f0 /pkgs/development/beam-modules/default.nix
parente59dcf8ccec439f54dc52ffd5832610fc3f6c9c2 (diff)
downloadnixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar.gz
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar.bz2
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar.lz
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar.xz
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.tar.zst
nixpkgs-e3863ab2691a34cb3868aca6a35caf97115a83c3.zip
elixir_1_10: init at 1.10.0
Set elixir_1_10 as default elixir version.
Removed elixir_1_5 as support has faded out now.
Diffstat (limited to 'pkgs/development/beam-modules/default.nix')
-rw-r--r--pkgs/development/beam-modules/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix
index 031f7b5dda7..96062a57300 100644
--- a/pkgs/development/beam-modules/default.nix
+++ b/pkgs/development/beam-modules/default.nix
@@ -36,35 +36,35 @@ let
         buildMix = callPackage ./build-mix.nix {};
 
         # BEAM-based languages.
-        elixir = elixir_1_9;
+        elixir = elixir_1_10;
 
-        elixir_1_9 = lib.callElixir ../interpreters/elixir/1.9.nix {
+        elixir_1_10 = lib.callElixir ../interpreters/elixir/1.10.nix {
           inherit rebar erlang;
           debugInfo = true;
         };
 
-        elixir_1_8 = lib.callElixir ../interpreters/elixir/1.8.nix {
+        elixir_1_9 = lib.callElixir ../interpreters/elixir/1.9.nix {
           inherit rebar erlang;
           debugInfo = true;
         };
 
-        elixir_1_7 = lib.callElixir ../interpreters/elixir/1.7.nix {
+        elixir_1_8 = lib.callElixir ../interpreters/elixir/1.8.nix {
           inherit rebar erlang;
           debugInfo = true;
         };
 
-        elixir_1_6 = lib.callElixir ../interpreters/elixir/1.6.nix {
+        elixir_1_7 = lib.callElixir ../interpreters/elixir/1.7.nix {
           inherit rebar erlang;
           debugInfo = true;
         };
 
-        elixir_1_5 = lib.callElixir ../interpreters/elixir/1.5.nix {
+        elixir_1_6 = lib.callElixir ../interpreters/elixir/1.6.nix {
           inherit rebar erlang;
           debugInfo = true;
         };
 
         # Remove old versions of elixir, when the supports fades out:
-        #   https://hexdocs.pm/elixir/compatibility-and-deprecations.html
+        # https://hexdocs.pm/elixir/compatibility-and-deprecations.html
 
         lfe = lfe_1_2;
         lfe_1_2 = lib.callLFE ../interpreters/lfe/1.2.nix { inherit erlang buildRebar3 buildHex; };