From 3858275962f1ac567b5dce2355035f9eddea0a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 14 Sep 2021 09:53:10 +0200 Subject: [PATCH] guix: Replace 'define-public'. This is a followup to 8531997d2a1e10d574a6e9ab70bc86ade6af4733. * guix.scm: Use #:re-export-and-replace for 'define-public'. --- guix.scm | 5 +++-- 1 file 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 +;;; Copyright © 2012, 2014, 2021 Ludovic Courtès ;;; ;;; 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 . -(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.