summary refs log tree commit diff
path: root/pkgs/development/interpreters/elixir
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-05-20 20:31:03 +0900
committerRaphael Megzari <raphael@megzari.com>2021-05-24 10:14:17 +0900
commitaa86fdcf85ad282be0478711343c5a77fa4f5ce2 (patch)
treed249767e05e144d83611eb3a5f20bea52c54e614 /pkgs/development/interpreters/elixir
parentfc6084c0aff25446f925e6587ec193aae2d01ee9 (diff)
downloadnixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar.gz
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar.bz2
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar.lz
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar.xz
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.tar.zst
nixpkgs-aa86fdcf85ad282be0478711343c5a77fa4f5ce2.zip
elixir: default to 1.12; init 1.12
Diffstat (limited to 'pkgs/development/interpreters/elixir')
-rw-r--r--pkgs/development/interpreters/elixir/1.12.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/elixir/1.12.nix b/pkgs/development/interpreters/elixir/1.12.nix
new file mode 100644
index 00000000000..f84f4255cca
--- /dev/null
+++ b/pkgs/development/interpreters/elixir/1.12.nix
@@ -0,0 +1,9 @@
+{ mkDerivation }:
+
+# How to obtain `sha256`:
+# nix-prefetch-url --unpack https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz
+mkDerivation {
+  version = "1.12.0";
+  sha256 = "sha256-Jnxi0vFYMnwEgTqkPncZbj+cR57hjvH77RCseJdUoFs=";
+  minimumOTPVersion = "22";
+}