Merge pull request #33986 from ankhers/update_elixir_1_6

Elixir: 1.6-rc -> 1.6
This commit is contained in:
adisbladis 2018-01-18 09:59:41 +08:00 committed by GitHub
commit ebd422af9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -42,9 +42,9 @@ let
buildMix = callPackage ./build-mix.nix {};
# BEAM-based languages.
elixir = elixir_1_5;
elixir = elixir_1_6;
elixir_1_6_rc = lib.callElixir ../interpreters/elixir/1.6.nix {
elixir_1_6 = lib.callElixir ../interpreters/elixir/1.6.nix {
inherit rebar erlang;
debugInfo = true;
};

View file

@ -1,7 +1,7 @@
{ mkDerivation }:
mkDerivation rec {
version = "1.6.0-rc.1";
sha256 = "06g6n9qvv57xa07fyaqhki2y8zw24m3smcjiw1wiw9pzl5a76iby";
version = "1.6.0";
sha256 = "0wfmbrq70n85mx17kl9h2k0xzgnhncz3xygjx9cbvpmiwwdzgrdx";
minimumOTPVersion = "18";
}

View file

@ -6677,7 +6677,7 @@ with pkgs;
inherit (beam.interpreters)
erlang erlangR18 erlangR19 erlangR20
erlang_odbc erlang_javac erlang_odbc_javac erlang_nox erlang_basho_R16B02
elixir elixir_1_6_rc elixir_1_5 elixir_1_4 elixir_1_3
elixir elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3
lfe lfe_1_2;
inherit (beam.packages.erlang)

View file

@ -52,7 +52,7 @@ 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_6_rc elixir_1_5 elixir_1_4 elixir_1_3;
inherit (packages.erlang) elixir elixir_1_6 elixir_1_5 elixir_1_4 elixir_1_3;
inherit (packages.erlang) lfe lfe_1_2;
};