Skip to content

Commit

Permalink
Make rebar3-nix-bootstrap depend on erlang.
Browse files Browse the repository at this point in the history
This fixes patchShebangs ability to properly fix up path to escript
binary.
  • Loading branch information
gleber committed Jan 16, 2016
1 parent 0b1fffb commit 0692c6a
Showing 1 changed file with 3 additions and 1 deletion.
@@ -1,4 +1,4 @@
{stdenv, fetchFromGitHub }:
{stdenv, fetchFromGitHub, erlang }:

stdenv.mkDerivation rec {
name = "rebar3-nix-bootstrap";
Expand All @@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "0xyj7j59dmxyl5nhhsmb0r1pihmk0s4k02ga1rfgm30rij6n7431";
};

buildInputs = [ erlang ];

installFlags = "PREFIX=$(out)";

meta = {
Expand Down

0 comments on commit 0692c6a

Please sign in to comment.