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)))
021-10-12 17:46:23 +0000'>2021-10-12Merge remote-tracking branch 'origin/master' into core-updates-frozen.Mathieu Othacehe 2021-10-07gnu: giac: Update to 1.7.0-37....* gnu/packages/algebra.scm (giac): Update to 1.7.0-37. Nicolas Goaziou 2021-10-06gnu: singular: Update to 4.2.1....* gnu/packages/algebra.scm (singular): Update to 4.2.1. Rewrite the origin expression so that it works for versions with or without a patch level. Andreas Enge 2021-10-06gnu: arb: Update to 2.21.0....* gnu/packages/algebra.scm (arb): Update to 2.21.0. Andreas Enge 2021-10-06gnu: flint: Update to 2.8.1....* gnu/packages/algebra.scm (flint): Update to 2.8.1. Andreas Enge 2021-10-03gnu: giac: Update to 1.7.0-35....* gnu/packages/algebra.scm (giac): Update to 1.7.0-35. Nicolas Goaziou 2021-09-27gnu: giac: Update to 1.7.0-33....* gnu/packages/algebra.scm (giac): Update to 1.7.0-33. Nicolas Goaziou 2021-09-17Merge branch 'master' into core-updates-frozen... Conflicts: gnu/packages/bioinformatics.scm gnu/packages/chez.scm gnu/packages/docbook.scm gnu/packages/ebook.scm gnu/packages/gnome.scm gnu/packages/linux.scm gnu/packages/networking.scm gnu/packages/python-web.scm gnu/packages/python-xyz.scm gnu/packages/tex.scm gnu/packages/version-control.scm gnu/packages/xml.scm guix/build-system/dune.scm guix/build-system/go.scm guix/build-system/linux-module.scm guix/packages.scm Marius Bakke 2021-09-14gnu: giac: Update to 1.7.0-31....* gnu/packages/algebra.scm (giac): Update to 1.7.0-31. Nicolas Goaziou 2021-09-10gnu: mpfrcx: Update to 0.6.3....* gnu/packages/algebra.scm (mpfrcx): Update to 0.6.3. Andreas Enge 2021-09-07Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-09-04gnu: giac: Update to 1.7.0-29....* gnu/packages/algebra.scm (giac): Update to 1.7.0-29. Nicolas Goaziou 2021-08-12Merge branch 'master' into core-updates-frozen... Conflicts: gnu/packages/algebra.scm gnu/packages/games.scm gnu/packages/golang.scm gnu/packages/kerberos.scm gnu/packages/mail.scm gnu/packages/python.scm gnu/packages/ruby.scm gnu/packages/scheme.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/version-control.scm Marius Bakke 2021-08-01Merge branch 'master' into core-updates-frozenMarius Bakke 2021-08-01gnu: giac: Update to 1.7.0-23....* gnu/packages/algebra.scm (giac): Update to 1.7.0-23. Nicolas Goaziou 2021-07-29Merge branch 'master' into core-updates-frozen... Conflicts: gnu/packages/bioinformatics.scm gnu/packages/cmake.scm gnu/packages/curl.scm gnu/packages/emacs-xyz.scm gnu/packages/gpodder.scm gnu/packages/music.scm gnu/packages/patches/glibc-bootstrap-system.patch gnu/packages/python-xyz.scm gnu/packages/shells.scm gnu/packages/statistics.scm Marius Bakke 2021-08-06gnu: giac: Update to 1.7.0-25....* gnu/packages/algebra.scm (giac): Update to 1.7.0-25. Nicolas Goaziou 2021-08-04gnu: Add eigen-for-tensorflow-lite....* gnu/packages/algebra.scm (eigen-for-tensorflow-lite): New variable. Ricardo Wurmus 2021-07-26gnu: giac: Update to 1.7.0-21....* gnu/packages/algebra.scm (giac): Update to 1.7.0-21. Nicolas Goaziou 2021-07-23gnu: pari-gp: Update to 2.13.2....* gnu/packages/algebra.scm (pari-gp): Update to 2.13.2. Andreas Enge 2021-07-18Merge branch 'master' into core-updatesLudovic Courtès 2021-07-07gnu: giac: Update to 1.7.0-17....* gnu/packages/algebra.scm (giac): Update to 1.7.0-17. Nicolas Goaziou 2021-07-06gnu: bc: Don't duplicate bootstrap phase....* gnu/packages/algebra.scm (bc)[arguments]: Use custom 'autoconf phase to replace standard 'bootstrap phase. Efraim Flashner