[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52213] [PATCH 2/2] gnu: Add julia-millboard.
From: |
jgart |
Subject: |
[bug#52213] [PATCH 2/2] gnu: Add julia-millboard. |
Date: |
Tue, 30 Nov 2021 20:30:10 -0500 |
* gnu/packages/julia-xyz.scm (julia-millboard): New variable.
---
gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 68eb92182b..a4551dd67e 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4995,6 +4995,29 @@ (define-public julia-softglobalscope
especially for beginners.")
(license license:expat)))
+(define-public julia-millboard
+ (package
+ (name "julia-millboard")
+ (version "0.2.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/wookay/Millboard.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0k9jqgp285qhckldvvsmfk6s69dcr8s74m2fijgm2vxjj2gqjs1n"))))
+ (build-system julia-build-system)
+ (native-inputs
+ `(("julia-jive" ,julia-jive)))
+ (home-page "https://github.com/wookay/Millboard.jl")
+ (synopsis "Displaying data in tables for Julia")
+ (description
+"@code{julia-millboard} provides a library for getting data in a tablized
format
+to arrange into rows and columns of cells.")
+ (license license:expat)))
+
(define-public julia-jive
(package
(name "julia-jive")
--
2.34.0