elixir: update from 0.11.2 to 0.12.0

This commit is contained in:
Nixpkgs Monitor 2014-01-02 15:35:49 +00:00 committed by Moritz Ulrich
parent a7ee7f394d
commit 4d3bf74b0a

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }:
let
version = "0.11.2";
version = "0.12.0";
in
stdenv.mkDerivation {
name = "elixir-${version}";
src = fetchurl {
url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
sha256 = "0rgx33q013c5y2jjwd4l93pzd3v3fha8xdsrhpl9c9wb7yprjc5x";
sha256 = "0cir2y36zljwphiqyz8xmq7qq0f094jmfy3qwk3wdm05c05nqnc8";
};
buildInputs = [ erlang rebar makeWrapper ];