diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-13 11:17:56 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-14 01:05:03 +0900 |
commit | 0afd09785d0f71d6ad845f3569917d49cf422352 (patch) | |
tree | 3bb0fec321a8bf02c0a3bb7644aa22e95c092af2 /gnu/packages/emacs-xyz.scm | |
parent | 078f3eea72325dbbb2d200bda549da70d4abbfbc (diff) | |
download | guix-0afd09785d0f71d6ad845f3569917d49cf422352.tar.gz guix-0afd09785d0f71d6ad845f3569917d49cf422352.zip |
gnu: Add emacs-org-texlive-collection.
* gnu/packages/emacs-xyz.scm (emacs-org-texlive-collection): New variable.
Change-Id: I4039e67f174d0440f351da6d11634f0ceea191cd
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7368589d7b..de42d9ebd9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -31,7 +31,7 @@ ;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com> ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org> -;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2017-2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com> ;;; Copyright © 2018, 2019 Mathieu Lirzin <mthl@gnu.org> ;;; Copyright © 2018, 2019, 2020, 2021 Pierre Neidhardt <mail@ambrevar.xyz> @@ -17655,6 +17655,29 @@ receive little if no maintenance and there is no guaranty that they are compatible with the Org stable version.") (license license:gpl3+))) +(define-public emacs-org-texlive-collection + (package + (inherit emacs-org) + (name "emacs-org-texlive-collection") + (source #f) + (build-system trivial-build-system) + (arguments (list #:builder #~(mkdir #$output))) + (native-inputs '()) + (inputs '()) + (propagated-inputs + (list texlive-amsmath + texlive-capt-of + texlive-graphics ;for graphicx, rotating + texlive-hyperref + texlive-titling + texlive-tools ;for longtable + texlive-ulem + texlive-wrapfig + texlive-scheme-small)) ;for amsfonts, fontspec, inputenc, etc. + (synopsis "Basic TexLive packages for Org-mode LaTeX export") + (description "This meta-package propagates the TexLive packages minimally +required by the Org-mode produced LaTeX output."))) + (define-public emacs-org-contacts ;; XXX: Upstream does not tag version bumps. Commit below matches latest ;; version bump. |