summaryrefslogtreecommitdiff
path: root/Biz/Ide
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2023-04-24 17:14:17 -0400
committerBen Sima <ben@bsima.me>2023-04-28 08:05:28 -0400
commitfb88a09b7da9ed1cc8e17856db501781e7ab7b9d (patch)
treeb10e5e1843515b88f42dd1b0af4b03bcefbcbce7 /Biz/Ide
parent02b2d3fa43bbfd8002fc6271f54a3d09e74b7cc4 (diff)
Default to Guile 3.0 everywhere
Without this, Guile libraries like SDL2 will use Guile 2.0 instead.
Diffstat (limited to 'Biz/Ide')
-rwxr-xr-xBiz/Ide/repl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/repl b/Biz/Ide/repl
index c6259e1..3ed9fa1 100755
--- a/Biz/Ide/repl
+++ b/Biz/Ide/repl
@@ -50,7 +50,7 @@ fi
for lib in ${langdeps[@]}; do
flags+=(--packages "$BILD.private.nixpkgs.guile-${lib}")
done
- flags+=(--packages "$BILD.private.nixpkgs.guile_3_0")
+ flags+=(--packages "$BILD.private.nixpkgs.guile")
command=${CMD:-"guile -L ${BIZ_ROOT:?} -C ${BIZ_ROOT:?}/_/int --r7rs --listen=${PORT:-37146}"}
;;
Lisp)