summary refs log tree commit diff
path: root/pkgs/development/interpreters/elixir
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-02-08 19:05:31 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-02-08 19:05:31 +0100
commitc983d23e336acb74ad3bc15c707353f731c51190 (patch)
tree54b1c433301bf4081465cb2eb63b77d172a14c16 /pkgs/development/interpreters/elixir
parent93f45ad2e5af3af22f91fc57e1a51e180b547b53 (diff)
downloadnixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar.gz
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar.bz2
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar.lz
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar.xz
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.tar.zst
nixlib-c983d23e336acb74ad3bc15c707353f731c51190.zip
elixir: Update to 0.12.3.
Diffstat (limited to 'pkgs/development/interpreters/elixir')
-rw-r--r--pkgs/development/interpreters/elixir/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix
index 5f1749f33c9e..56fc15b0511c 100644
--- a/pkgs/development/interpreters/elixir/default.nix
+++ b/pkgs/development/interpreters/elixir/default.nix
@@ -1,29 +1,30 @@
 { stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils }:
 
 let
-  version = "0.12.0";
+  version = "0.12.3";
 in
 stdenv.mkDerivation {
   name = "elixir-${version}";
 
   src = fetchurl {
     url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz";
-    sha256 = "0cir2y36zljwphiqyz8xmq7qq0f094jmfy3qwk3wdm05c05nqnc8";
+    sha256 = "1im00cki38ldsig93djlsap8zbgwv74kpgw7xg9l6ik2cbpk0131";
   };
 
   buildInputs = [ erlang rebar makeWrapper ];
 
   preBuild = ''
-    substituteInPlace rebar \
-      --replace "/usr/bin/env escript" ${erlang}/bin/escript
+    # The build process uses ./rebar. Link it to the nixpkgs rebar
+    rm -v rebar
+    ln -s ${rebar}/bin/rebar rebar
+
     substituteInPlace Makefile \
-      --replace '$(shell echo `pwd`/rebar)' ${rebar}/bin/rebar \
       --replace "/usr/local" $out
   '';
 
   postFixup = ''
-    # Elixirs binaries are shell scripts which run erl. This adds some
-    # stuff to PATH so the scripts run without problems.
+    # Elixir binaries are shell scripts which run erl. Add some stuff
+    # to PATH so the scripts can run without problems.
 
     for f in $out/bin/*
     do