diff options
author | Andreas Enge <andreas@enge.fr> | 2023-04-25 15:19:29 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-25 15:19:29 +0200 |
commit | c919bfefd98bf2e29549539b4e28e6dc2a8a6f32 (patch) | |
tree | 61d10f1fcc6f80d97f788e19df7f20ff7fc27752 /gnu/packages/tex.scm | |
parent | ce0bdceb4948d5f297327a1b1724074ca960eb05 (diff) | |
parent | 472706ae2f9160833951a4e4bcc4c206e03097b0 (diff) | |
download | guix-c919bfefd98bf2e29549539b4e28e6dc2a8a6f32.tar guix-c919bfefd98bf2e29549539b4e28e6dc2a8a6f32.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4e4a7b4aef..79c791c89d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -26,6 +26,7 @@ ;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com> ;;; Copyright © 2023 Thomas Albers Raviola <thomas@thomaslabs.org> ;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com> +;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw> ;;; ;;; This file is part of GNU Guix. ;;; @@ -8972,6 +8973,36 @@ PDF documents.") develop documents with LaTeX, in a single application.") (license license:gpl2+))) +(define-public texstudio + (package + (name "texstudio") + (version "4.5.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/texstudio-org/texstudio") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0bzdcsc0273809hx04zqd2famq05q9rpvqcbqhkjqnqp9vxbisig")))) + (build-system qt-build-system) + (arguments + `(#:tests? #f)) ;tests work only with debug build + (native-inputs + (list pkg-config + poppler-qt5 + qtdeclarative-5 + qtsvg-5 + qttools-5)) + (home-page "https://www.texstudio.org/") + (synopsis "Feature-packed LaTeX editor") + (description + "TeXstudio is an integrated writing environment for creating LaTeX +documents. It makes writing LaTeX comfortable by providing features such as +syntax-highlighting, an integrated viewer and reference checking.") + (license license:gpl3))) + (define-public dvisvgm (package (name "dvisvgm") |