AtlatestRepositorysigil-match

sigil-match / treepackage.sgl

1;;; sigil-match - Pattern matching library
2;;;
3;;; Destructure and dispatch on data using patterns. Match values against
4;;; shapes, bind variables, and combine patterns with guards, boolean logic,
5;;; and transformations.
6
7(package
8 name: "sigil-match"
9 version: "0.9.1"
10 sigil: "^0.17"
11 description: "Pattern matching library for Sigil"
12 url: "https://codeberg.org/sigil/sigil-match"
13 license: "BSD-3-Clause"
14 authors: (list "David Wilson <[email protected]>")
16 configs: (list
17 (config
18 name: 'dev
19 output-dir: "build/dev"
20 debug?: #t
21 optimize: 0)
22 (config
23 name: 'release
24 output-dir: "build/release"
25 debug?: #f
26 optimize: 2))
28 dependencies: (list
29 (from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.17")))