summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2026-01-12 17:05:08 -0500
committerjgart <jgart@dismail.de>2026-01-12 17:05:08 -0500
commit3bbd8918e53eef2bae5fbf0f4be5eae60135897e (patch)
treebc340c18f3f3fd0ec41598a7683be0262c5f3b40
parentff6a7f8c5145351ec43327f552504eca8d348579 (diff)
gnu: sbcl-concrete-syntax-tree: Update to 0.3.0.
* gnu/packages/lisp-xyz.scm (sbcl-concrete-syntax-tree): Update to 0.3.0. [native-inputs]: Add sbcl-fiveam Change-Id: If14a7cbaaae8df25dd94474b1e0c7ff6d96f1fb0
-rw-r--r--gnu/packages/lisp-xyz.scm51
1 files changed, 25 insertions, 26 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ed555288e40..7fbfa0166f9 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -13592,31 +13592,30 @@ numbers in Common Lisp.")
(sbcl-package->ecl-package sbcl-computable-reals))
(define-public sbcl-concrete-syntax-tree
- (let ((commit "37291727196a3bc88a7be67c1427c52078d4b82c")
- (revision "0"))
- (package
- (name "sbcl-concrete-syntax-tree")
- (version (git-version "0.2.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
- (commit commit)))
- (file-name (git-file-name "cl-concrete-syntax-tree" commit))
- (sha256
- (base32 "15q9jyqsh2z921li9my8c840cj2ci7k217x5frfiyk0kymkx4rgv"))))
- (build-system asdf-build-system/sbcl)
- (inputs
- (list sbcl-acclimation))
- (arguments
- '(#:asd-systems '("concrete-syntax-tree"
- "concrete-syntax-tree-destructuring"
- "concrete-syntax-tree-source-info")))
- (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
- (synopsis "Parse Common Lisp code into a concrete syntax tree")
- (description
- "This library is intended to solve the problem of source tracking for
+ (package
+ (name "sbcl-concrete-syntax-tree")
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
+ (commit version)))
+ (file-name (git-file-name "cl-concrete-syntax-tree" version))
+ (sha256
+ (base32 "05cl83fhn4a4y492f8sq29560jgbg26c5wz5aqawz5gw3riz0n4b"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs (list sbcl-fiveam))
+ (inputs
+ (list sbcl-acclimation))
+ (arguments
+ '(#:asd-systems '("concrete-syntax-tree"
+ "concrete-syntax-tree-destructuring"
+ "concrete-syntax-tree-source-info")))
+ (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
+ (synopsis "Parse Common Lisp code into a concrete syntax tree")
+ (description
+ "This library is intended to solve the problem of source tracking for
Common Lisp code.
By \"source tracking\", it is meant that code elements that have a known
@@ -13629,7 +13628,7 @@ does not impose a particular structure of this information. Instead, it
provides utilities for manipulating source code in the form of what is called
concrete syntax trees (CSTs for short) that preserve this information about
the origin.")
- (license license:bsd-2))))
+ (license license:bsd-2)))
(define-public cl-concrete-syntax-tree
(sbcl-package->cl-source-package sbcl-concrete-syntax-tree))