gleam: move js runtimes and git to nativeCheckInputs

JS runtimes are only used during checks for the runtime
integration tests.
Added comment for inclusion of git.
This commit is contained in:
06kellyjac
2025-07-07 14:25:44 +01:00
parent 7e2b40e025
commit bea380e834
+9 -3
View File
@@ -27,16 +27,22 @@ rustPlatform.buildRustPackage (finalAttrs: {
cargoHash = "sha256-TJqylGjXdkunE5mHkpFnvv3SENBFwtQehV0q2k3hNMY=";
nativeBuildInputs = [
git
pkg-config
erlang_27
];
buildInputs = [ openssl ];
nativeCheckInputs = [
# used by several tests
git
# js runtimes used for integration tests
nodejs
bun
deno
];
buildInputs = [ openssl ];
checkFlags = [
# Makes a network request
"--skip=tests::echo::echo_dict"