From f75d34b36869e074804d7ff8bb36a02a4204aef3 Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Tue, 16 Sep 2025 23:10:44 -0400 Subject: [PATCH] buildRebar3: fix OTP 28 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 𑁱 rebar3 help bare compile Usage: rebar3 bare compile [-p ] [-s ] [-o ] -p, --paths Wildcard paths of ebin directories to add to code path, separated by a colon -s, --separator In case of multiple return paths, the separator character to use to join them. -o, --outdir Path where build artifacts are located. Defaults to the current directory. --- pkgs/development/beam-modules/build-rebar3.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/beam-modules/build-rebar3.nix b/pkgs/development/beam-modules/build-rebar3.nix index 28e77449f05f..77b40461f80e 100644 --- a/pkgs/development/beam-modules/build-rebar3.nix +++ b/pkgs/development/beam-modules/build-rebar3.nix @@ -91,7 +91,7 @@ let buildPhase = '' runHook preBuild - HOME=. rebar3 bare compile -path "" + HOME=. rebar3 bare compile --paths "." runHook postBuild '';