aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
blob: 8753c21e423f880e7a6d9f7f6f6ff1139f8b7254 (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
41
;;; 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
        ftp-client
        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)))
/a>...Ludovic Courtès 2021-07-18Merge branch 'master' into core-updatesLudovic Courtès 2021-06-30guix: gexp: Define gexp->approximate-sexp....Maxime Devos 2021-03-30gexp: Add 'sexp->gexp'....Ludovic Courtès 2021-03-03gexp: #:references-graphs refers to non-native derivations....Ludovic Courtès 2021-02-23gexp: Micro-optimize 'gexp->sexp' and 'lower-inputs'....Ludovic Courtès 2021-02-23gexp: 'gexp-inputs' returns both native and non-native inputs....Ludovic Courtès 2021-02-23gexp: 'gexp-inputs' returns a list of <gexp-input> records....Ludovic Courtès 2020-12-15store-copy: 'populate-store' can optionally deduplicate files....Ludovic Courtès 2020-12-15store-copy: 'populate-store' resets timestamps....Ludovic Courtès 2020-11-05gexp: Warn when importing (guix config) or (ice-9 …)....Ludovic Courtès 2020-11-05gexp: Store the source code location in <gexp>....Ludovic Courtès 2020-05-25gexp: Fix expansion for (file-append (local-file ...) ...)....Ludovic Courtès 2020-05-25tests: Hide quoted (define-module ...) form from Geiser....Ludovic Courtès 2020-05-16gexp: Add 'let-system'....Ludovic Courtès 2020-03-12gexp: Add 'with-parameters'....Ludovic Courtès 2020-03-08gexp: Default to current target....Mathieu Othacehe 2020-01-04gexp: Add 'raw-derivation-file'....Ludovic Courtès 2019-12-18gexp: Allow character literals in GEXP->SEXP....Marius Bakke 2019-11-30gexp: 'local-file' properly resolves non-literal relative file names....Ludovic Courtès 2019-09-23gexp: Catch and report non-self-quoting gexp inputs....Ludovic Courtès 2019-07-26gexp: 'program-file' honors the current system and cross-compilation target....Ludovic Courtès 2019-07-15gexp: 'lowered-gexp-guile' now returns a <derivation-input>....Ludovic Courtès 2019-07-15gexp: <lowered-gexp> separates sources from derivation inputs....Ludovic Courtès 2019-07-04gexp: Add 'lower-gexp' and express 'gexp->derivation' in terms of it....Ludovic Courtès