about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLiam Diprose <liam@liamdiprose.com>2024-06-06 16:59:05 +1200
committerLiam Diprose <liam@liamdiprose.com>2024-06-07 01:46:27 +1200
commit6ae361cbd244868082a14c1de45911537a072ae5 (patch)
treefd2546d922ad8e28d0175da95bd6b06b37f2823b
parent818dbe2f96df233d2041739d6079bb616d3e5597 (diff)
erlang: patch sh path
RabbitMQ 3.13 crashes because it requires Erlang/OTP 26 and hits [this call to `sh`](https://github.com/erlang/otp/blob/maint-26/lib/os_mon/src/disksup.erl#L243). This patches the call to `sh` with its full path, `${bash}/bin/sh` when the version is older than 25
-rw-r--r--pkgs/development/interpreters/erlang/generic-builder.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/erlang/generic-builder.nix b/pkgs/development/interpreters/erlang/generic-builder.nix
index 2f3b6de7d11c8..ff8aadf90980f 100644
--- a/pkgs/development/interpreters/erlang/generic-builder.nix
+++ b/pkgs/development/interpreters/erlang/generic-builder.nix
@@ -11,6 +11,7 @@
 , ncurses
 , openssl
 , perl
+, runtimeShell
 , autoconf
 , openjdk11 ? null # javacSupport
 , unixODBC ? null # odbcSupport
@@ -115,6 +116,9 @@ stdenv.mkDerivation ({
     patchShebangs make
 
     ${postPatch}
+  '' + optionalString (lib.versionOlder "25" version) ''
+    substituteInPlace lib/os_mon/src/disksup.erl \
+      --replace-fail '"sh ' '"${runtimeShell} '
   '';
 
   # For OTP 27+ we need ex_doc to build the documentation