AtlatestRepositorysigil-nrepl
sigil-nrepl / treepackage.sgl
1
;;; sigil-nrepl - Network REPL2
;;;3
;;; Provides a network-accessible REPL server for editor integration4
;;; (Emacs, VS Code, etc.). Depends on sigil-repl for shared REPL5
;;; infrastructure and sigil-socket for network transport.7
(package8
name: "sigil-nrepl"9
version: "0.17.0"10
sigil: "^0.17.9"11
description: "Network REPL server for Sigil"12
url: "https://codeberg.org/sigil/sigil-nrepl"13
license: "BSD-3-Clause"14
authors: (list "David Wilson <[email protected]>")16
dependencies: (list17
(from-git url: "codeberg:sigil/sigil-repl" version: "^0.17.0")18
(from-git url: "codeberg:sigil/sigil-socket" version: "^0.17.0"))21
tasks: (list22
(task23
name: 'build24
description: "Compile sigil-nrepl modules"25
steps: (list26
(ensure-dirs dirs: '("lib/sigil" "lib/sigil/nrepl"))27
(compile-sigil-module source: "src/sigil/nrepl.sgl"28
output: (config-output-subdir "lib/sigil/nrepl.sgb"))29
(compile-sigil-module source: "src/sigil/nrepl/client.sgl"30
output: (config-output-subdir "lib/sigil/nrepl/client.sgb"))))))