mirror of
https://codeberg.org/guix/guix.git
synced 2026-09-06 22:01:46 +00:00
* gnu/packages/scheme.scm (kawa): Move to here ... * gnu/packages/kawa.scm: ... from here. (kawa): Define deprecated public alias. Change-Id: Idf1aaaec0dad5850a35d9baa58ac67344b1c7831 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
25 lines
986 B
Scheme
25 lines
986 B
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2026 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 kawa)
|
|
#:use-module (guix deprecation))
|
|
|
|
;; Deprecated at 2026-05-31
|
|
(define-deprecated/public-alias kawa
|
|
(@ (gnu packages scheme) kawa))
|