From a7a3ac03129a36d949a73085b16e55547b3644cf Mon Sep 17 00:00:00 2001 From: sg-qwt <115715554+sg-qwt@users.noreply.github.com> Date: Tue, 6 Jan 2026 08:32:24 +0800 Subject: [PATCH] fix: set empty BABASHKA_CLASSPATH --- package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.nix b/package.nix index fdc9992..4e48c8e 100644 --- a/package.nix +++ b/package.nix @@ -23,7 +23,8 @@ stdenv.mkDerivation rec { # Wrap to ensure babashka is on PATH wrapProgram $out/bin/brepl \ - --prefix PATH : ${lib.makeBinPath [ babashka ]} + --prefix PATH : ${lib.makeBinPath [ babashka ]} \ + --set BABASHKA_CLASSPATH "" runHook postInstall ''; @@ -45,4 +46,4 @@ stdenv.mkDerivation rec { platforms = babashka.meta.platforms; mainProgram = "brepl"; }; -} \ No newline at end of file +}