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)))
nuastro: Update to 0.7....Tobias Geerinckx-Rice 2018-07-07gnu: Update stellarium to 0.18.1....Björn Höfling 2018-07-03gnu: Update stellarium to 0.18.0....Björn Höfling 2018-06-07gnu: gnuastro: Add TIFF support....Tobias Geerinckx-Rice 2018-06-06gnu: cfitsio: Update to 3.450....Tobias Geerinckx-Rice 2018-06-06gnu: gnuastro: Update to 0.6....Tobias Geerinckx-Rice 2018-06-06gnu: wcslib: Fix build....Tobias Geerinckx-Rice 2018-02-02gnu: cfitsio: Use HTTPS home page....Tobias Geerinckx-Rice 2018-01-31gnu: cfitsio: Update to 3.420....Tobias Geerinckx-Rice 2018-01-31gnu: cfitsio: Mark up description....Tobias Geerinckx-Rice 2018-01-10gnu: wcslib: Mark up description....Tobias Geerinckx-Rice 2018-01-10gnu: wcslib: Update to 5.18....Tobias Geerinckx-Rice 2018-01-05gnu: stellarium: Update to 0.17.0....Kei Kebreau 2017-12-24gnu: gnuastro: Update to 0.5....Leo Famulari 2017-09-20gnu: gnuastro: Update to 0.4....Tobias Geerinckx-Rice 2017-09-20gnu: wcslib: Use HTTPS home page....Tobias Geerinckx-Rice 2017-09-20gnu: wcslib: Update to 5.17....Tobias Geerinckx-Rice 2017-06-26gnu: stellarium: Update to 0.16.0....Danny Milosavljevic 2017-06-24gnu: gnuastro: Enable "----enable-bin-op-alltypes"....Danny Milosavljevic 2017-06-12gnu: stellarium: Update to 0.15.2....Danny Milosavljevic 2017-06-12gnu: stellarium: Fix build with Qt 5.9....Danny Milosavljevic 2017-06-08gnu: gnuastro: Update to 0.3....Ludovic Courtès