AtlatestRepositorycourier
1
;;; Courier - Chat and notification channel server for Claude Code2
;;;3
;;; MCP channel server that bridges chat messages (Telegram) and4
;;; desktop notifications into a running Claude Code session.6
(package7
name: "courier"8
version: "0.3.9"9
description: "Chat and notification channel server for Claude Code sessions"10
url: "https://codeberg.org/sigil/courier"11
license: "BSD-3-Clause"12
authors: (list "David Wilson <[email protected]>")13
sigil: "^0.17"15
entry: '(courier main)16
bundle-name: "courier"18
configs: (list19
(config20
name: 'dev21
output-dir: "build/dev"22
debug?: #t23
optimize: 024
bundle?: #t)25
(config26
name: 'release27
output-dir: "build/release"28
backend: 'native29
debug?: #f30
optimize: 231
bundle?: #t))33
dependencies: (list34
;; Explicit sigil-lib pin: overrides the extraction-era implicit35
;; sigil-lib (^0.14 from the retired sigil-lang repo) that the36
;; transitive c-source packages (sigil-tls/sigil-crypto, via37
;; sigil-telegram's ^0.14 chain) would otherwise derive. The 0.1738
;; native codegen needs 0.17 runtime headers to build libsigil.a.39
(from-git url: "codeberg:sigil/sigil"40
package: "sigil-lib" version: "^0.17")41
(from-git url: "codeberg:sigil/sigil-json" version: "^0.16")42
(from-git url: "codeberg:sigil/sigil-log" version: "^0.16")43
(from-git url: "codeberg:sigil/sigil-socket" version: "^0.17")44
(from-git url: "codeberg:sigil/sigil-mcp" version: "^0.16")45
(from-git url: "codeberg:sigil/sigil-yaml" version: "^0.9.1")46
(from-git url: "codeberg:sigil/sigil-telegram" version: "^0.10.0"))48
dev-dependencies: (list49
(from-git url: "codeberg:sigil/sigil"50
package: "sigil-test" version: "^0.17")51
(from-git url: "codeberg:sigil/sigil"52
package: "sigil-test-runner" version: "^0.17"))54
tasks: (list55
(task56
name: 'build57
description: "Compile courier modules"58
steps: (list59
(compile-sigil-modules sources: "src/**/*.sgl"60
output-dir: (config-output-subdir "lib"))))))