aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-09-14 09:53:10 +0200
committerLudovic Courtès <ludo@gnu.org>2021-09-14 11:50:58 +0200
commit3858275962f1ac567b5dce2355035f9eddea0a05 (patch)
tree9e1b88236a8ff7c1c33ecf268cd395c45a48fdac /guix.scm
parentf440ccd2fb0bbed7b8555b8c886e7be0aa305b76 (diff)
downloadguix-3858275962f1ac567b5dce2355035f9eddea0a05.tar
guix-3858275962f1ac567b5dce2355035f9eddea0a05.tar.gz
guix: Replace 'define-public'.
This is a followup to 8531997d2a1e10d574a6e9ab70bc86ade6af4733. * guix.scm: Use #:re-export-and-replace for 'define-public'.
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/guix.scm b/guix.scm
index 42bc8c8818..1df875b23c 100644
--- a/guix.scm
+++ b/guix.scm
@@ -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.