mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
erlang-ls: add erlang to buildInputs
This enables patch-shebangs to find `escript` and patch the interpreter path correctly
This commit is contained in:
parent
e4d652129a
commit
814d9bac11
@ -1,4 +1,4 @@
|
||||
{ fetchFromGitHub, fetchHex, stdenv, rebar3WithPlugins, lib }:
|
||||
{ fetchFromGitHub, fetchHex, stdenv, erlang, rebar3WithPlugins, lib }:
|
||||
let
|
||||
version = "0.15.0";
|
||||
owner = "erlang-ls";
|
||||
@ -7,7 +7,7 @@ let
|
||||
in stdenv.mkDerivation {
|
||||
inherit version;
|
||||
pname = "erlang-ls";
|
||||
buildInputs = [ (rebar3WithPlugins { }) ];
|
||||
buildInputs = [ erlang (rebar3WithPlugins { }) ];
|
||||
src = fetchFromGitHub {
|
||||
inherit owner repo;
|
||||
sha256 = "1s6zk8r5plm7ajifz17mvfrnk5mzbhj7alayink9phqbmzrypnfg";
|
||||
|
Loading…
Reference in New Issue
Block a user