[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings.
From: |
Efraim Flashner |
Subject: |
[bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings. |
Date: |
Tue, 5 Oct 2021 12:47:30 +0300 |
* gnu/packages/julia-xyz.scm (julia-latexstrings): New variable.
---
gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 492fdd9175..2238acf103 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2407,6 +2407,28 @@ (define-public julia-json3
focus on speed and slick struct mapping.")
(license license:expat)))
+(define-public julia-latexstrings
+ (package
+ (name "julia-latexstrings")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/stevengj/LaTeXStrings.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "117z27krcf8fydgp6mb0pgn75r4gng9qs7v90qb4bqzsry3faadp"))))
+ (build-system julia-build-system)
+ (native-inputs
+ `(("julia-documenter" ,julia-documenter)))
+ (home-page "https://github.com/stevengj/LaTeXStrings.jl")
+ (synopsis "Input and display of LaTeX equation strings")
+ (description "This is a small package to make it easier to type LaTeX
+equations in string literals in the Julia language.")
+ (license license:expat)))
+
(define-public julia-lazyarrays
(package
(name "julia-lazyarrays")
--
2.33.0
- [bug#51028] [PATCH 0/7] More julia packages, Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings.,
Efraim Flashner <=
- [bug#51028] [PATCH 2/7] gnu: Add julia-pyplot., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 3/7] gnu: Add julia-dataframes., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 4/7] gnu: Add julia-bson., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 5/7] gnu: Add julia-expronicon., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 6/7] gnu: Add julia-configurations., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 7/7] gnu: Add julia-structarrays., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 0/7] More julia packages, zimoun, 2021/10/11