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)))
0200'>2022-06-06import: cabal: Document failing syntax through tests....Lars-Dominik Braun 2022-06-06import: cabal: Allow curly bracket before else statement....Lars-Dominik Braun 2022-06-06import: cabal: Allow properties without space between key and value....Lars-Dominik Braun 2022-06-06import: cabal: Allow curly brackets in more positions....Lars-Dominik Braun 2022-06-06import: cabal: Support elif statement....Lars-Dominik Braun 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-12-01build-system: haskell: Add ‘hackage-uri’ procedure....Xinglu Chen 2021-09-17Merge branch 'master' into core-updates-frozen...Marius Bakke 2021-09-15import: cabal: Treat identifier names correctly....Xinglu Chen 2021-07-20import: hackage: Emit new-style package inputs....Sarah Morgensen 2021-06-25import: hackage: Support "common" field and imports...Philip Munksgaard