···29 MIX_DEBUG = if enableDebugInfo then 1 else 0;
30 HEX_OFFLINE = 1;
3132- # stripping does not have any effect on beam files
33- dontStrip = true;
34-35 # add to ERL_LIBS so other modules can find at runtime.
36 # http://erlang.org/doc/man/code.html#code-path
37 # Mix also searches the code path when compiling with the --no-deps-check flag
···7172 runHook postInstall
73 '';
00007475 passthru = {
76 packageName = name;
···29 MIX_DEBUG = if enableDebugInfo then 1 else 0;
30 HEX_OFFLINE = 1;
3100032 # add to ERL_LIBS so other modules can find at runtime.
33 # http://erlang.org/doc/man/code.html#code-path
34 # Mix also searches the code path when compiling with the --no-deps-check flag
···6869 runHook postInstall
70 '';
71+72+ # stripping does not have any effect on beam files
73+ # it is however needed for dependencies with NIFs like bcrypt for example
74+ dontStrip = false;
7576 passthru = {
77 packageName = name;
···42 buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ];
43 propagatedBuildInputs = unique beamDeps;
44045 inherit src;
46+47+ # stripping does not have any effect on beam files
48+ # it is however needed for dependencies with NIFs
49+ # false is the default but we keep this for readability
50+ dontStrip = false;
5152 setupHook = writeText "setupHook.sh" ''
53 addToSearchPath ERL_LIBS "$1/lib/erlang/lib/"