aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2022, 2024 Janneke Nieuwenhuizen <janneke@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/>.

;; GNU Guix development manifest.  To create development environment, run
;;
;;     guix shell
;;
;; or something like
;;
;;     guix shell --pure -m manifest.scm hello ...

(use-modules (guix packages))

(concatenate-manifests
 (list (package->development-manifest
        (let ((guix (specification->package "guix")))
          (package/inherit guix
            ;; Replace with non-minimal Graphviz for PDF support.
            (native-inputs (modify-inputs (package-native-inputs guix)
                             (replace "graphviz"
                               (specification->package "graphviz")))))))

       ;; Extra packages used by unit tests.
       (specifications->manifest (list "gnupg"))

       ;; Packages needed for 'make dist' and 'make distcheck'.
       (specifications->manifest
        (list "imagemagick"
              "perl"))

       ;; Useful extras for patches submission.
       (specifications->manifest
        (list "b4"
              "git"
              "git:send-email"
              "mumi"
              "nss-certs"
              "openssl"              ;required if using 'smtpEncryption = tls'
              "patman"))))
89df'>guix: Let texlive importer suggest format creation....Nicolas Goaziou 2023-07-18guix: import: Improve importing texlive meta packages....Nicolas Goaziou 2023-07-18guix: import: Handle native inputs in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Fix multiple licenses output in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Improve home-page generation in texlive importer....Nicolas Goaziou 2023-07-18guix: import: Update texlive importer according to new build system....Nicolas Goaziou 2023-05-31tests: Use quasiquoted 'match' patterns for package sexps....Ludovic Courtès 2023-04-19tests: Fix texlive->guix-package test....Maxim Cournoyer 2022-07-22tests: Adjust texlive importer tests....Ricardo Wurmus 2022-01-13import: texlive: Remove labels from 'propagated-inputs' field....Ludovic Courtès 2022-01-11tests: Fix texlive test by sorting locations....Ricardo Wurmus 2021-11-18tests: Replace texlive importer tests....Ricardo Wurmus 2021-03-06tests: do not hard code HTTP ports...Maxime Devos