[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27049: [PATCH 1/2] gnu: Add font-mathjax.
From: |
Ludovic Courtès |
Subject: |
bug#27049: [PATCH 1/2] gnu: Add font-mathjax. |
Date: |
Sat, 03 Jun 2017 15:51:44 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Hi Arun,
Arun Isaac <address@hidden> skribis:
> * gnu/packages/fonts.scm (font-mathjax): New variable.
[...]
> +(define-public font-mathjax
> + (package
> + (name "font-mathjax")
> + (version "2.7.1")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "https://github.com/mathjax/MathJax/archive/"
> + version ".tar.gz"))
> + (file-name (string-append name "-" version ".tar.gz"))
> + (sha256
> + (base32
> + "0sbib5lk0jrvbq6s72ag6ss3wjlz5wnk07ddxij1kp96yg3c1d1b"))))
Should it be:
(source (package-source mathjax))
to make sure the two packages are kept in sync?
> + (home-page "https://www.mathjax.org/")
> + (synopsis "JavaScript display engine for LaTeX, MathML, and AsciiMath")
> + (description "MathJax is a JavaScript display engine for LaTeX, MathML,
> +and AsciiMath notation that works in all modern browsers. It requires no
> +plugins or software to be installed on the browser. So the page author can
> +write web documents that include mathematics and be confident that readers
> will
> +be able to view it naturally and easily.")
> + (license license:asl2.0)))
I think the synopsis/description should be updated to mention that this
package simply provides the font used by MathJax, no?
Otherwise LGTM, thanks!
Ludo’.