summaryrefslogtreecommitdiff
path: root/Biz/Ide/repl
blob: 3b2414453df6314018d9a1754da6328d611c2316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash
#
# a simple complement to bild which only deals with launching repls
#
# > repl <target>
#
# Starts a repl/shell for target.
#
#  - if target.hs, load ghci
#  - TODO: if target.scm, load scheme repl
#  - TODO: if target.nix, load 'nix repl'
##
  set -e
  target=${1:?}
  json=$(bild --json "$target")
  langdeps=$(jq --raw-output '.[].langdeps | join(" ")' <<< $json)
  nix-shell \
    --packages "(import $BIZ_ROOT/Biz/Bild.nix {}).ghcWith (h: with h; [$langdeps])" \
    --command "ghci -i$BIZ_ROOT -ghci-script $BIZ_ROOT/.ghci $target"
##