summary refs log tree commit diff
path: root/pkgs/development/beam-modules
diff options
context:
space:
mode:
authorJustin Wood <justin.k.wood@gmail.com>2017-06-26 16:58:44 -0400
committerJustin Wood <justin.k.wood@gmail.com>2017-06-26 23:13:58 -0400
commit803797c6d6983ea2652247b8335aa1f96744d323 (patch)
tree1985bfc70e440eb0745b1739e313c4c8a3593083 /pkgs/development/beam-modules
parent909da3998e9c59c17d17f31a9713b9894a6f8374 (diff)
downloadnixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar.gz
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar.bz2
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar.lz
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar.xz
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.tar.zst
nixpkgs-803797c6d6983ea2652247b8335aa1f96744d323.zip
Inherit the elixir versions for beam modules
Rename attributes from elixir-1_x to elixir_1_x
Diffstat (limited to 'pkgs/development/beam-modules')
-rw-r--r--pkgs/development/beam-modules/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix
index d1907e07262..ffafe88cc7f 100644
--- a/pkgs/development/beam-modules/default.nix
+++ b/pkgs/development/beam-modules/default.nix
@@ -37,19 +37,19 @@ let
         buildMix = callPackage ./build-mix.nix {};
 
         # BEAM-based languages.
-        elixir = elixir-1_4;
+        elixir = elixir_1_4;
 
-        elixir-1_5 = lib.callElixir ../interpreters/elixir/1.5.nix "18" {
+        elixir_1_5_rc = lib.callElixir ../interpreters/elixir/1.5.nix "18" {
                        inherit rebar erlang;
                        debugInfo = true;
                      };
 
-        elixir-1_4 = lib.callElixir ../interpreters/elixir/1.4.nix "18" {
+        elixir_1_4 = lib.callElixir ../interpreters/elixir/1.4.nix "18" {
                        inherit rebar erlang;
                        debugInfo = true;
                      };
 
-        elixir-1_3 = lib.callElixir ../interpreters/elixir/1.3.nix "18" {
+        elixir_1_3 = lib.callElixir ../interpreters/elixir/1.3.nix "18" {
                        inherit rebar erlang;
                        debugInfo = true;
                      };