aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
blob: 42bc8c8818a557dbe9eacaf6f44fdab1465a9a65 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014 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))

;; 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)))
>...Maxim Cournoyer 2023-03-10doc: Sending-a-Patch-Series: Fix URL....Hugo Buddelmeijer 2023-03-05doc: Give advice to contributors about communicating with reviewers....Leo Famulari 2023-01-11doc: contributing: Note '-v REVISION' bug in 'git send-email'....( 2023-01-11doc: contributing: Tweak the Commit Policy....Christopher Baines 2022-12-18doc: Fix typo....Tobias Geerinckx-Rice 2022-12-02doc: Recommend 'match-record'....Ludovic Courtès 2022-11-01doc: contributing: Use proper subsections....( 2022-10-28doc: contributing: Expand "Sending a Patch Series"....( 2022-10-27build-system: Add pyproject-build-system....Lars-Dominik Braun 2022-10-07doc: Add git send-email tip in 'Submitting Patches' section....Maxim Cournoyer 2022-09-25etc: teams: Add scope support....Mathieu Othacehe 2022-09-05doc: Add more info about commits signature local verification....Andrew Tropin 2022-08-30etc: Add tempel snippets....Nicolas Graves 2022-07-18doc: Fix the example of "Run `make` automatically"...Rostislav Svoboda 2022-07-15monad-repl: Add "build", "lower", and "verbosity" commands....Ludovic Courtès 2022-07-13doc: Prefer "guix show" over "guix package --show"....Ludovic Courtès 2022-07-11doc: Fix cross-reference to Git Info manual....Maxim Cournoyer 2022-07-07doc: Document the documentation process....jgart 2022-05-22doc: Fix typos....Tobias Geerinckx-Rice 2022-05-22import: Add Elm importer....Philip McGrath 2022-05-22guix: Add elm-build-system....Philip McGrath 2022-04-02doc: Document inclusion requirements for new translations....Julien Lepiller 2022-02-15doc: Move build commands to @example for clarity....Ludovic Courtès 2022-01-31doc: Add a rule of thumb to guide enabling new committers....Maxim Cournoyer 2022-01-28doc: Mention how to remedy "source file ... newer than compiled error"....Guix Together 2022-01-28doc: Explain the use of make clean-go when an ABI mismatch occurs....Guix Together