diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 00:31:16 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:15 +0200 |
commit | 51443f69e4a8c1b2dc900ecf53e1a96e95cd24c2 (patch) | |
tree | 610d11f94af0d3ade7bfb6f8fecdf356b19e9122 /gnu/packages | |
parent | 8f02e31cad788f3face1081bf2d29aee09b48fa4 (diff) | |
download | guix-51443f69e4a8c1b2dc900ecf53e1a96e95cd24c2.tar.gz guix-51443f69e4a8c1b2dc900ecf53e1a96e95cd24c2.zip |
gnu: Add texlive-getmap.
* gnu/packages/tex.scm (texlive-getmap): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f0535b47c5..c7acf2d1fa 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17298,6 +17298,31 @@ uses an autolayout algorithm which can be customized, e.g., to prioritize certain paths.") (license license:lppl1.3+))) + +(define-public texlive-getmap + (package + (name "texlive-getmap") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/getmap/" "scripts/getmap/" + "tex/latex/getmap/") + (base32 + "12pip7a1pibjlbllkrbz0fss0i5zdd8x1pbvzzbwn6rb3ragqwl9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments + (list #:link-scripts #~(list "getmapdl.lua"))) + (home-page "https://ctan.org/pkg/getmap") + (synopsis "Download OpenStreetMap maps for use in documents") + (description + "The package provides a simple interface to OpenStreetMap, and to Google +Maps, map images. In the simplest case, it is sufficient to specify the +address you need. The package loads the map image using an external Lua +script (LaTeX must be running with @samp{\\write 18} enabled). The Lua script +may be used from the command line; a Bash version is provided.") + (license license:lppl))) + (define-public texlive-inlinedef (package (name "texlive-inlinedef") |