elixir: Update to 11.2.

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
Moritz Ulrich 2013-11-29 17:00:04 +01:00
parent 31cdbe4a31
commit 486246c682

View File

@ -1,11 +1,14 @@
{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }: { stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }:
let
version = "0.11.2";
in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "elixir-0.10.1"; name = "elixir-${version}";
src = fetchurl { src = fetchurl {
url = "https://github.com/elixir-lang/elixir/archive/v0.10.1.tar.gz"; url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
sha256 = "0gfr2bz3mw7ag9z2wb2g22n2vlyrp8dwy78fj9zi52kzl5w3vc3w"; sha256 = "0rgx33q013c5y2jjwd4l93pzd3v3fha8xdsrhpl9c9wb7yprjc5x";
}; };
buildInputs = [ erlang rebar makeWrapper ]; buildInputs = [ erlang rebar makeWrapper ];
@ -34,11 +37,11 @@ stdenv.mkDerivation {
description = "A functional, meta-programming aware language built on top of the Erlang VM"; description = "A functional, meta-programming aware language built on top of the Erlang VM";
longDescription = '' longDescription = ''
Elixir is a functional, meta-programming Elixir is a functional, meta-programming aware language built on
aware language built on top of the Erlang VM. It is a dynamic top of the Erlang VM. It is a dynamic language with flexible
language with flexible syntax and macro support that leverages syntax and macro support that leverages Erlang's abilities to
Erlang's abilities to build concurrent, distributed and build concurrent, distributed and fault-tolerant applications
fault-tolerant applications with hot code upgrades.p with hot code upgrades.
''; '';
license = licenses.epl10; license = licenses.epl10;