guix: Replace 'define-public'.

This is a followup to 8531997d2a.

* guix.scm: Use #:re-export-and-replace for 'define-public'.
This commit is contained in:
Ludovic Courtès 2021-09-14 09:53:10 +02:00
parent f440ccd2fb
commit 3858275962
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2012, 2014, 2021 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -16,7 +16,8 @@
;;; 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 (guix))
(define-module (guix)
#:re-export-and-replace (define-public)) ;from (guix packages)
;; The composite module that re-exports everything from the public modules.