Skip to content

Commit

Permalink
elixir_1_8: init at 1.8.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ejpcmac committed Jan 3, 2019
1 parent b0f40b7 commit 4345715
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/beam-modules/default.nix
Expand Up @@ -44,6 +44,11 @@ let
# BEAM-based languages.
elixir = elixir_1_7;

elixir_1_8 = lib.callElixir ../interpreters/elixir/1.8.nix {
inherit rebar erlang;
debugInfo = true;
};

elixir_1_7 = lib.callElixir ../interpreters/elixir/1.7.nix {
inherit rebar erlang;
debugInfo = true;
Expand Down
7 changes: 7 additions & 0 deletions pkgs/development/interpreters/elixir/1.8.nix
@@ -0,0 +1,7 @@
{ mkDerivation }:

mkDerivation rec {
version = "1.8.0-rc.1";
sha256 = "06k9q46cwn79ic6kw0b0mskf9rqlgm02jb8n1ajz55kmw134kq6m";
minimumOTPVersion = "20";
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -7697,7 +7697,7 @@ in
inherit (beam.interpreters)
erlang erlangR18 erlangR19 erlangR20 erlangR21
erlang_odbc erlang_javac erlang_odbc_javac erlang_nox erlang_basho_R16B02
elixir elixir_1_7 elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3
elixir elixir_1_8 elixir_1_7 elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3
lfe lfe_1_2;

inherit (beam.packages.erlang)
Expand Down
3 changes: 2 additions & 1 deletion pkgs/top-level/beam-packages.nix
Expand Up @@ -61,7 +61,8 @@ rec {
# Other Beam languages. These are built with `beam.interpreters.erlang`. To
# access for example elixir built with different version of Erlang, use
# `beam.packages.erlangR19.elixir`.
inherit (packages.erlang) elixir elixir_1_7 elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3;
inherit (packages.erlang)
elixir elixir_1_8 elixir_1_7 elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3;

inherit (packages.erlang) lfe lfe_1_2;
};
Expand Down

0 comments on commit 4345715

Please sign in to comment.