3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #3643 from daogames/tb/update-elixir

elixir: bump to 0.15.1
This commit is contained in:
Peter Simons 2014-08-17 14:18:24 +02:00
commit 25351ea15c

View file

@ -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 ];