diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2024-04-01 02:51:10 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-11 12:46:09 +0200 |
commit | 80eace78a38fe5738b7608f8381fcd734a084ed0 (patch) | |
tree | a0876c8811551b10b39bbdcdb8c8604db066eb80 /gnu/packages/chez.scm | |
parent | abd2ed839d3710ef754bb3b537eba6e351fc71c9 (diff) |
gnu: Deprecate chez-scheme-for-system.in favor of chez-scheme.
Chez Scheme 10.0.0 includes all of the additional platform support
developed on the Racket branch.
* gnu/packages/chez.scm (chez-scheme-for-system): Deprecate it.
Change-Id: I7e11c8c4d95f41ff63e5c52be664a537556393c1
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/chez.scm')
-rw-r--r-- | gnu/packages/chez.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm index 5b98b3ce1f4..5a9a7612827 100644 --- a/gnu/packages/chez.scm +++ b/gnu/packages/chez.scm @@ -27,6 +27,7 @@ #:select (gpl2+ gpl3+ lgpl2.0+ lgpl2.1+ asl2.0 bsd-3 expat public-domain)) #:use-module (guix packages) + #:use-module (guix deprecation) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix utils) @@ -68,8 +69,7 @@ ;; ;; Code: -(define* (chez-scheme-for-system #:optional - system) +(define-deprecated (chez-scheme-for-system #:optional system) chez-scheme "Returns 'chez-scheme'." chez-scheme) |