mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Include Elixir 1.5 rc
This commit is contained in:
parent
aa1f059116
commit
909da3998e
3 changed files with 12 additions and 0 deletions
|
@ -39,6 +39,11 @@ let
|
|||
# BEAM-based languages.
|
||||
elixir = elixir-1_4;
|
||||
|
||||
elixir-1_5 = lib.callElixir ../interpreters/elixir/1.5.nix "18" {
|
||||
inherit rebar erlang;
|
||||
debugInfo = true;
|
||||
};
|
||||
|
||||
elixir-1_4 = lib.callElixir ../interpreters/elixir/1.4.nix "18" {
|
||||
inherit rebar erlang;
|
||||
debugInfo = true;
|
||||
|
|
6
pkgs/development/interpreters/elixir/1.5.nix
Normal file
6
pkgs/development/interpreters/elixir/1.5.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ mkDerivation }:
|
||||
|
||||
mkDerivation rec {
|
||||
version = "1.5.0-rc.0";
|
||||
sha256 = "1p0sawz86w9na56c42ivdacqxzldjb9s9cvl2isj3sy4nwsa0l0j";
|
||||
}
|
|
@ -57,6 +57,7 @@ rec {
|
|||
# access for example elixir built with different version of Erlang, use
|
||||
# `beam.packages.erlangR19.elixir`.
|
||||
elixir = packages.erlang.elixir;
|
||||
elixir-1_5 = packages.erlang.elixir-1_5;
|
||||
elixir-1_4 = packages.erlang.elixir-1_4;
|
||||
elixir-1_3 = packages.erlang.elixir-1_3;
|
||||
|
||||
|
|
Loading…
Reference in a new issue