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)))
n phase name....* gnu/packages/vim.scm (vim-tagbar)[arguments]: Fix typo in phase name. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> jgart 2022-03-18gnu: vim: Update to 8.2.4564....* gnu/packages/vim.scm (vim): Update to 8.2.4564. [arguments]: Adjust custom 'patch-absolute-paths phase to upstream changes. Efraim Flashner 2022-02-15gnu: Remove unneeded uses of 'libiconv'....iconv is part of glibc, there is no need to add it as input. * gnu/packages/accessibility.scm (brltty)[inputs]: Remove LIBICONV. * gnu/packages/compression.scm (innoextract)[inputs]: Likewise. * gnu/packages/haskell-apps.scm (darcs)[inputs]: Likewise. * gnu/packages/kde-multimedia.scm (k3b)[inputs]: Likewise. * gnu/packages/linphone.scm (liblinphone)[inputs]: Likewise. * gnu/packages/mail.scm (mailutils)[inputs]: Likewise. * gnu/packages/maths.scm (libqalculate)[inputs]: Likewise. * gnu/packages/pep.scm (pep-engine)[inputs]: Likewise. * gnu/packages/vim.scm (neovim)[inputs]: Likewise. * gnu/packages/wget.scm (wget2)[inputs]: Likewise. * gnu/packages/telegram.scm (telegram-desktop)[inputs]: Likewise. * gnu/packages/video.scm (transcode)[native-inputs]: Likewise. Marius Bakke 2022-02-06gnu: vim: Update to 8.2.4306....* gnu/packages/vim.scm (vim): Update to 8.2.4306. Efraim Flashner 2022-01-19gnu: vim-guix-vim: Update to 0.3.1....* gnu/packages/vim.scm (vim-guix-vim): Update to 0.3.1. Efraim Flashner 2022-01-09gnu: xxd: Rewrite with gexps....* gnu/packages/vim.scm (xxd)[arguments]: Rewrite with gexps. Efraim Flashner 2022-01-09gnu: vim: Remove unneeded make-flag....Upstream reports this fixed with 8.2.3406. * gnu/packages/vim.scm (vim)[arguments]: Remove make-flags. (vim-full)[arguments]: Adjust accordingly. Efraim Flashner 2022-01-09gnu: vim: Update to 8.2.3995....* gnu/packages/vim.scm (vim): Update to 8.2.3995. [arguments]: Remove trailing #t from phases. (vim-full): Remove comment about package reliably building. Efraim Flashner 2021-12-21gnu: Add vim-gnupg....* gnu/packages/vim.scm (vim-gnupg): New variable. Efraim Flashner 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-12-01gnu: Add vim-nerdtree....* gnu/packages/vim.scm (vim-nerdtree): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Foo Chuan Wei 2021-11-26gnu: vim-fugitive: Update to 3.6....* gnu/packages/vim.scm (vim-fugitive): Update to 3.6. Efraim Flashner