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)))
/td>Ludovic Courtès 2019-03-06gnu: linux-libre: Update to 5.0....Mark H Weaver 2019-02-18gnu: Add ungoogled-chromium....Marius Bakke 2019-01-23gnu: linux-libre: Make CRYPTO_CRC32C a built-in on arm64....Mark H Weaver 2019-01-09gnu: linux-libre: Enable pressure stall information....Mark H Weaver 2019-01-01gnu: linux-libre: Update to 4.20, while retaining 4.19 LTS....Mark H Weaver 2018-10-28gnu: linux-libre: Enable BOCHS DRM support....Mathieu Othacehe 2018-10-23gnu: linux-libre: Update to 4.19....Mark H Weaver 2018-10-19gnu: linux-libre: Enable SHPC PCI Hotplug driver on ARM64....Mark H Weaver 2018-09-25gnu: linux-libre: Enable SHPC PCI Hotplug driver, now built-in only....Mark H Weaver 2018-08-18gnu: linux-libre: Update to 4.18.1....Mark H Weaver 2018-07-04gnu: Remove linux-libre@4.1....Mark H Weaver 2018-06-05gnu: linux-libre: Update to 4.17....Mark H Weaver 2018-05-21gnu: linux-libre: Enable build for aarch64-linux....Vagrant Cascadian 2018-05-11pack: Relocatable wrapper now properly maps the current UID/GID....Ludovic Courtès 2018-05-10pack: Add '--relocatable'....Ludovic Courtès 2018-04-11gnu: linux-libre: Update to 4.16.1....Mark H Weaver