mirror of
https://codeberg.org/guix/guix.git
synced 2026-09-05 13:22:04 +00:00
* gnu/packages/admin.scm (acct): Move to here... * gnu/packages/acct.scm (acct): ...from here. New deprecated variable. Change-Id: I4494503a5655be8db117d6a0148c117beb20ec4e Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
24 lines
920 B
Scheme
24 lines
920 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 acct)
|
|
#:use-module (guix deprecation))
|
|
|
|
;; XXX: Deprecated on 2026-06-04.
|
|
(define-deprecated/public-alias acct
|
|
(@ (gnu packages admin) acct))
|