elixir: format: group inherit

This commit is contained in:
happysalada
2021-05-24 10:14:44 +09:00
committed by Raphael Megzari
parent 58a66f0160
commit 79118eb657
@@ -27,7 +27,7 @@ assert versionAtLeast (getVersion erlang) minimumOTPVersion;
stdenv.mkDerivation ({
name = "${baseName}-${version}";
inherit src version;
inherit src version debugInfo;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ erlang ];
@@ -37,8 +37,6 @@ stdenv.mkDerivation ({
setupHook = ./setup-hook.sh;
inherit debugInfo;
buildFlags = optional debugInfo "ERL_COMPILER_OPTIONS=debug_info";
preBuild = ''