about summary refs log tree commit diff
path: root/pkgs/development/interpreters/elixir
diff options
context:
space:
mode:
authorTino Breddin <tino@daogames.com>2014-08-17 14:10:51 +0200
committerTino Breddin <tino@daogames.com>2014-08-17 14:10:51 +0200
commit655db00a78f0d73309b6b5f08c27e21cbf4c10de (patch)
treefb257b2588d09871c433073c8f1e103b22152489 /pkgs/development/interpreters/elixir
parentec42370aeed91ca614f069ec028b3258aa216980 (diff)
downloadnixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar.gz
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar.bz2
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar.lz
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar.xz
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.tar.zst
nixlib-655db00a78f0d73309b6b5f08c27e21cbf4c10de.zip
elixir: bump to 0.15.1
Diffstat (limited to 'pkgs/development/interpreters/elixir')
-rw-r--r--pkgs/development/interpreters/elixir/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix
index 00fe490d494a..59629eb2f59c 100644
--- a/pkgs/development/interpreters/elixir/default.nix
+++ b/pkgs/development/interpreters/elixir/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }:
 
 let
-  version = "0.13.3";
+  version = "0.15.1";
 in
 stdenv.mkDerivation {
   name = "elixir-${version}";
 
   src = fetchurl {
     url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
-    sha256 = "17nb8qfyjc67g62x10l2gq0z1501xa4wry906br0w2rm8bf4j8rf";
+    sha256 = "8e608abf90a6e9a25ef5fb7e45dfd04e2cb7e1fecb4ac260bf6652885a7f0c50";
   };
 
   buildInputs = [ erlang rebar makeWrapper ];