diff options
author | Efraim Flashner <[email protected]> | 2024-12-04 15:19:37 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:14:43 +0200 |
commit | db82c5ce487941677589024e8585e78798f9d5b5 (patch) | |
tree | b9ae5a941d1ee8829c3cc58d7623f8f4061b59ce /gnu/packages/crates-graphics.scm | |
parent | e246db24f42a13908210f78ec2bc5255dfeedc4e (diff) |
gnu: Add rust-katexit-0.1.
* gnu/packages/crates-graphics.scm (rust-katexit-0.1): New variable.
Change-Id: Ie9fdc10ea83d297af6a2e3cd9eb21f0f1e715fcd
Diffstat (limited to 'gnu/packages/crates-graphics.scm')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index 0c378d1e9a..a44240dc01 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -2783,6 +2783,28 @@ pixel buffers with width, height and stride.") ("rust-png" ,rust-png-0.16) ("rust-walkdir" ,rust-walkdir-2)))))) +(define-public rust-katexit-0.1 + (package + (name "rust-katexit") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "katexit" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1368kfz2cfsqk2sa4gy2cdzy8ynffv24p8wq49y20b6f932084zb")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/termoshtt/katexit") + (synopsis "Insert KaTeX autorender script into rustdoc") + (description + "This package provides a @code{KaTeX} autorender script into rustdoc.") + (license license:asl2.0))) + (define-public rust-keyframe-1 (package (name "rust-keyframe") |