diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-15 16:30:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:15 +0200 |
commit | 558107e4218a5a5925756e2bd83610a299e0b8c9 (patch) | |
tree | ed3d84a0181e8c74f0a5d485f2dde997dc4655f6 /gnu | |
parent | 347a6932b099069ebe44a7e52a692ae8f8641af5 (diff) | |
download | guix-558107e4218a5a5925756e2bd83610a299e0b8c9.tar.gz guix-558107e4218a5a5925756e2bd83610a299e0b8c9.zip |
gnu: Add texlive-albatross.
* gnu/packages/tex.scm (texlive-albatross): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a2837ce4ed..5519ead5f7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1035,6 +1035,29 @@ a @file{.tfm} (TeX Font Metric) file. It normally preserves kerns and ligatures, but also offers additional control over them.") (license license:gpl2))) +(define-public texlive-albatross + (package + (name "texlive-albatross") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/albatross.1" + "doc/man/man1/albatross.man1.pdf" + "doc/support/albatross/" + "scripts/albatross/" + "source/support/albatross/") + (base32 + "147cdqiyapmhs6s5cp4f0vhc71d3w9kvxk8ylbrhsp5h97r8y6w9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "albatross.sh"))) + (home-page "https://ctan.org/pkg/albatross") + (synopsis "Find fonts that contain a given glyph") + (description + "This is a command line tool for finding fonts that contain +a given (Unicode) glyph. It relies on Fontconfig.") + (license license:bsd-3))) + (define-public texlive-tex (package (name "texlive-tex") |