summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tropin <andrew@trop.in>2024-02-19 13:20:41 +0300
committerAndrew Tropin <andrew@trop.in>2024-02-19 17:00:47 +0300
commitecfb6452cdd443e5b4a7391df015df41fb032a09 (patch)
treeff88945bfa90cf519bd2dc18460382b8240ab7e7
parent55c94d68df7b020cec961cefd4f53a134270f321 (diff)
gnu: elixir: Set default value for MIX_REBAR3.
* gnu/packages/elixir.scm (elixir): Set default value for MIX_REBAR3. Change-Id: Ic7332a3c997a26ca42229a6f2040f20d9b19aad1
-rw-r--r--gnu/packages/elixir.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm
index 2d11707711..2885ddbd61 100644
--- a/gnu/packages/elixir.scm
+++ b/gnu/packages/elixir.scm
@@ -108,18 +108,21 @@
;; program, for example `iex -S mix`, so we should not wrap
;; mix into shell script.
(substitute* (string-append out "/bin/mix")
- (("Mix.start\\(\\)") "\
-~w[GUIX_ELIXIR_LIBS ERL_LIBS]
+ (("Mix.start\\(\\)")
+ (format #f "\
+~~w[GUIX_ELIXIR_LIBS ERL_LIBS]
|> Enum.map(&System.get_env/1)
|> Enum.reject(&is_nil/1)
|> Enum.join(\":\")
|> case do \"\" -> :ok; erl_libs -> System.put_env(\"ERL_LIBS\", erl_libs) end
-Mix.start()"))
+System.put_env(\"MIX_REBAR3\", System.get_env(\"MIX_REBAR3\", \"~a\"))
+Mix.start()"
+ (search-input-file inputs "/bin/rebar3"))))
(for-each (lambda (program)
(wrap-program (string-append out "/bin/" program)
'("ERL_LIBS" prefix ("${GUIX_ELIXIR_LIBS}"))))
programs)))))))
- (inputs (list erlang git))
+ (inputs (list erlang rebar3 git))
(native-search-paths
(list (search-path-specification
(variable "GUIX_ELIXIR_LIBS")