guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 067b7d123868d9556c8c5778d5f8cb95ec7d93df
Author: Igorj Gorjaĉev <[email protected]>
AuthorDate: Sun Jan 11 15:11:18 2026 +0200
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 <[email protected]>
---
gnu/packages/elixir.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm
index e99cb081bf..7e02971c93 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