mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-13 12:45:53 +02:00
3699c4a4fe
* gnu/packages/nvi.scm (nvi): Deprecate, move from here ... * gnu/packages/text-editors.scm: ... to here. Update copyright headers. * gnu/system.scm: Do not use (gnu packages nvi). Change-Id: I9968c854a7ea42b1f3288ae68a9259bd7d35c685 Merges: https://codeberg.org/guix/guix/pulls/4806 Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
24 lines
933 B
Scheme
24 lines
933 B
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;;
|
|
;;; 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 nvi)
|
|
#:use-module (gnu packages text-editors)
|
|
#:use-module (guix deprecation))
|
|
|
|
(define-deprecated/public-alias nvi
|
|
(@ (gnu packages text-editors) nvi))
|