forked from tribes/guix
ef76675e8b
* gnu/packages/oyacc.scm (oyacc): Move from here … * gnu/packages/compiler-tools.scm: … to this new file. * gnu/local.mk: (GNU_SYSTEM_MODULES): Adjust accordingly. * etc/teams.scm (build-tools)[#:scope]: Likewise. * CODEOWNERS: Likewise. * po/packages/POTFILES.in: Likewise. Change-Id: I6a93800d8549c612f21a705fe70cdd0266e334f9 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
25 lines
1014 B
Scheme
25 lines
1014 B
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 oyacc)
|
|
#:use-module (gnu packages compiler-tools)
|
|
#:use-module (guix deprecation))
|
|
|
|
(define-deprecated/public-alias oyacc
|
|
(@ (gnu packages compiler-tools) oyacc))
|