1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

guix: Add define-deprecated/public-alias.

* guix/deprecation.scm (define-deprecated/public-alias): New variable.
This commit is contained in:
Liliana Marie Prikler
2022-03-29 21:16:35 +02:00
parent 1be7f43756
commit 9ab158a457

View File

@@ -25,6 +25,7 @@
define-deprecated/public
define-deprecated/alias
define-deprecated/public-alias
warn-about-old-daemon
warn-about-deprecation))
@@ -124,3 +125,10 @@ This will write a deprecation warning to GUIX-WARNING-PORT."
(id
(identifier? #'id)
#'replacement)))))
(define-syntax-rule (define-deprecated/public-alias deprecated replacement)
"Like define-deprecated/alias, but exporting DEPRECATED.
It is assumed, that REPLACEMENT is already public."
(begin
(define-deprecated/alias deprecated replacement)
(export deprecated)))