diff options
| author | Igorj Gorjaĉev <igor@goryachev.org> | 2026-01-11 15:11:18 +0200 |
|---|---|---|
| committer | Giacomo Leidi <therewasa@fishinthecalculator.me> | 2026-02-11 10:14:37 +0100 |
| commit | 067b7d123868d9556c8c5778d5f8cb95ec7d93df (patch) | |
| tree | 99db41cc30d2d240cecd66ceb9e46067c806b8f8 /gnu/packages/elixir.scm | |
| parent | c4164697f37323b0592bdd38ffa458af20524530 (diff) | |
gnu: elixir-hex: Set deterministic compiler option.
* gnu/packages/elixir.scm (elixir-hex): Set deterministic compiler option.
Change-Id: If299e5b996d7689545eeab99c5559a14b304706d
Signed-off-by: Giacomo Leidi <therewasa@fishinthecalculator.me>
Diffstat (limited to 'gnu/packages/elixir.scm')
| -rw-r--r-- | gnu/packages/elixir.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index e99cb081bf6..7e02971c934 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -209,6 +209,8 @@ being successfully used in web development and the embedded software domain.") (delete 'configure) (replace 'build (lambda _ + ;; Set deterministic compiler option. + (setenv "ERL_COMPILER_OPTIONS" "deterministic") (setenv "MIX_ENV" "prod") (invoke "mix" "compile"))) (replace 'install |
