Merge pull request #4619 from aronasorman/update_elixir

update elixir to v1.0.2
This commit is contained in:
Pascal Wittmann 2014-10-22 20:20:01 +02:00
commit 773e804274

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils, curl, bash, cacert }:
let
version = "1.0.0";
version = "1.0.2";
in
stdenv.mkDerivation {
name = "elixir-${version}";
src = fetchurl {
url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
sha256 = "1ci8g6nh89xnn0ax9kazcs47w406nqsj1d4rf8sb1b6abfq78xsj";
sha256 = "6156ee396e85045358d11a6839e157e8fa9573b7414bddbd2c91843ed2b4b962";
};
buildInputs = [ erlang rebar makeWrapper ];