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)))
il'>...Tobias Geerinckx-Rice 2023-07-09gnu: signify: Use G-expressions....Tobias Geerinckx-Rice 2023-07-09gnu: signify: Update to 31....Tobias Geerinckx-Rice 2023-07-09gnu: libxcrypt: Update to 4.4.36....Tobias Geerinckx-Rice 2023-07-08gnu: libsecp256p1: Use a source file-name....Efraim Flashner 2023-06-19gnu: libsecp256k1: Update to 0.3.2....Guillaume Le Vaillant 2023-05-25gnu: encfs: Depend on OpenSSL v1.1 to fix test segfault....Ivan Vilata i Balaguer 2023-04-14Merge branch 'master' into core-updates....Maxim Cournoyer 2023-03-24gnu: b2sum: Limit to x86_64-linux....Greg Hogan 2023-03-02Merge remote-tracking branch 'savannah/master' into core-updates...Christopher Baines 2023-02-19gnu: Use HTTPS package home pages wherever possible....Tobias Geerinckx-Rice 2023-01-30Merge remote-tracking branch 'origin/master' into core-updates...Efraim Flashner 2023-01-22gnu: libxcrypt: Update to 4.4.33....Tobias Geerinckx-Rice 2023-01-15gnu: minisign: Update to 0.11....Tobias Geerinckx-Rice 2022-12-11gnu: olm: Update to 3.2.14....Tobias Geerinckx-Rice 2022-12-11gnu: olm: Drop custom ‘lib-’ prefix....Tobias Geerinckx-Rice 2022-12-11gnu: botan: Update to 2.19.3....Tobias Geerinckx-Rice 2022-11-17gnu: botan: Update to 2.19.2...Jack Hill 2022-10-16gnu: cryfs: Remove trailing #t....Tobias Geerinckx-Rice 2022-10-16gnu: cryfs: Remove input labels....Tobias Geerinckx-Rice 2022-10-16gnu: cryfs: Update to 0.11.3....Tobias Geerinckx-Rice 2022-09-27Merge branch 'staging' into core-updates...Maxim Cournoyer 2022-09-22gnu: Add keychain....Denis 'GNUtoo' Carikli