aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014, 2021, 2022 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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 (guix)
  #:use-module (guix packages)
  #:re-export-and-replace (define-public))        ;from (guix packages)

;; The composite module that re-exports everything from the public modules.

(eval-when (eval load compile)
  (begin
    (define %public-modules
      '(base32
        build-system
        derivations
        download
        gexp
        monads
        monad-repl
        packages
        store
        utils))

    (for-each (let ((i (module-public-interface (current-module))))
                (lambda (m)
                  (module-use! i (resolve-interface `(guix ,m)))))
              %public-modules)))
te to 161....Vagrant Cascadian 2020-09-30gnu: Fix package references....Efraim Flashner 2020-07-17gnu: diffoscope: Update to 151....Vagrant Cascadian 2020-07-03gnu: diffoscope: Update to 150....Vagrant Cascadian 2020-06-25gnu: diffoscope: Console widowed brackets....Tobias Geerinckx-Rice 2020-06-25gnu: diffoscope: Install the man page....Tobias Geerinckx-Rice 2020-06-19gnu: diffoscope: Update to 148....Vagrant Cascadian 2020-06-14gnu: diffoscope: Update to 147....Vagrant Cascadian 2020-06-05gnu: diffoscope: Update to 146....Tobias Geerinckx-Rice 2020-06-05gnu: diffoscope: Remove redundant let binding....Tobias Geerinckx-Rice 2020-05-25gnu: diffoscope: Update to 145....Vagrant Cascadian 2020-04-30gnu: diffoscope: Update to 143....Vagrant Cascadian 2020-04-17gnu: diffoscope.scm: Add missing import....Christopher Baines 2020-04-16gnu: diffoscope: Update to 141....Vagrant Cascadian 2020-04-13gnu: diffoscope: Update to 139....Tobias Geerinckx-Rice 2020-03-30gnu: reprotest: Update to 0.7.14....Vagrant Cascadian 2020-03-30gnu: diffoscope: Update to 138....Vagrant Cascadian