elixir: update from 0.13.0 to 0.13.2

This commit is contained in:
Moritz Ulrich 2014-05-19 15:38:21 +02:00
parent 0e44d8e3e8
commit d4dadce5e4

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }:
let
version = "0.13.0";
version = "0.13.2";
in
stdenv.mkDerivation {
name = "elixir-${version}";
src = fetchurl {
url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
sha256 = "070jhv38d5f694gn4lgkzx3vcs495jnlgkrp6b3159zbri1mhz5b";
sha256 = "13mflf35lj2vbv32s5n982x7k5k55dsn9mx9rf3vkqgfsy7zx4ds";
};
buildInputs = [ erlang rebar makeWrapper ];