forked from tribes/guix
b25c0b62fe
* gnu/packages/compiler-tools.scm: Move to here... * gnu/packages/re2c.scm (re2c): ...from here. New deprecated variable. Change-Id: I540e0d2cf0a1137e08f0278e2768b02b9d6fdfae Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
26 lines
1.0 KiB
Scheme
26 lines
1.0 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2025 Anderson Torres <anderson.torres.8519@gmail.com>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages re2c)
|
|
#:use-module (gnu packages compiler-tools)
|
|
#:use-module (guix deprecation))
|
|
|
|
;; XXX: Deprecated on 2026-05-28.
|
|
(define-deprecated/public-alias re2c
|
|
(@ (gnu packages compiler-tools) re2c))
|